msys.db.query
Name
msys.db.query — Query a datasource
Synopsis
msys.db.query(cachename, query, queryparams, options);
cachename: string query: string queryparams: table, optional options: table, optional
Description
Issue a query to a datasource. The parameters are as follows:
-
cachenamethe name of the datasource cache to be queried -
querythe query to be presented to the cache -
queryparamsa Lua table object with parameters to bind into the queryNote
The SQL standard requires the use of the "
IS [NOT] NULL"syntax in a predicate for matching againstNULL. A predicate "field_name= ?" would result in an error if a query parameter isNULL. A Luanilis equivalent to an SQLNULL. -
optionsa Lua table object containing additional options that affect this query
query may use placeholder characters in the form :name, ? or $name depending on the underlying driver. If the ? placeholder is used, then queryparams must be a table with numeric keys, with index 1 corresponding to the first ? in the query string. Otherwise, the keys must be string keys with names that match up to the defined parameters. For instance, $name or :name expect to find a parameter in the table using the key name; the leading $ or : is removed before looking up the value.
If options is specified, it must be a Lua table object. The following options are permitted:
-
nocachebypass the cache and force the query to be presented to the underlying datasource -
raise_errorThis is a boolean. If set totrue, raise an exception (lua_error) on error containing the error string. The default value istrue.
If the query succeeds, it returns: rowiter, an iterator returning the rows.
If the query fails and raise_error is set to false, it returns:
-
nilindicating query failure -
errmsgindicating what failed
If the query fails and raise_error is set to true an exception is raised.
The idiom for issuing a query and working with the results is as follows:
require('msys.db'); require('msys.datasource'); local rowset, row, err; ... rowset, err = msys.db.query('mycache', 'select firstname, lastname from names where age < ?', {30}); if rowset == nil then print("ERROR: " .. err); return; end for row in rowset do print(row.firstname, row.lastname); end ...
Note
The data cache used in the preceding example must be defined in your configuration file. For more information see “ds_core – Datasource Query Core”.
Each iteration over the returned rowset yields a table with string keys corresponding to the names of the columns from the row. If the driver does not return names, the values are indexed by their ordinal position instead, with the first column at ordinal position 1. For drivers that can return multiple values for a given named column (such as LDAP), the values may in turn be tables indexed by ordinal position of the sub-value.
Enable this function with the statement require('msys.db');.
Warning
When using this function you must also include require('msys.datasource');.