Result
GetOptions
get options from a Result module
Calling Sequence
Parameters
Description
Examples
result:-GetOptions( opts )
result
-
Result module
opts
(optional) equation of the form fetchsize=integer
GetOptions gets the values of various options that affect the behavior of result.
fetchsize = integer
Determines how many rows must be fetched from the database. The more rows fetched, the faster accessing rows will be. However, fetching more rows uses more memory.
An option's current value can be set by calling SetOptions.
Calling GetOptions with no arguments returns the current values of all the arguments that GetOptions can query.
driver≔DatabaseLoadDriver⁡:
conn≔driver:-OpenConnection⁡url,name,pass:res≔conn:-ExecuteQuery⁡SELECT * FROM animals:res:-GetOptions⁡
fetchsize=5
stat:-SetOptions⁡fetchsize=8;stat:-GetOptions⁡
fetchsize=8
See Also
Database
Database[Connection]
Database[Result][SetOptions]
Database[Statement]
Database[usage]
Download Help Document