msys.db.fetch_row
Name
msys.db.fetch_row — If successful, return the first row of the query result as a table
Synopsis
msys.db.fetch_row(cachename, query, queryparams, options);
cachename: string query: string queryparams: table, optional options: table, optional
Description
Issue a query to a datasource.
Enable this function with the statement require('msys.db');
and also include the statement require('msys.datasource');
.
The parameters are as follows:
-
cachename
– Name of the datasource cache to be queried -
query
– Query to be presented to the cacheThe query may use placeholder characters in the form
:name, ?
, or$name
depending on the underlying driver. If the?
placeholder is used, thenqueryparams
must be a table with numeric keys, with index1
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. -
queryparams
– 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 Luanil
is equivalent to an SQLNULL
. -
options
– Lua table object containing additional options that affect this queryIf
options
is specified, it must be a table. The following options are permitted:-
nocache
– Boolean value. If set totrue
, bypass the cache and force the query to be presented to the underlying datasource. -
raise_error
– Boolean value. If set totrue
, raise an exception (lua_error) on error containing the error string. Default value istrue
.
-
This function returns the following:
-
If query succeeds – Returns the first row of the query results as a table.
-
If the query returns no data – Returns
nil
. -
If the query fails and
raise_error
is set tofalse
– Returnsnil
indicating query failure anderrmsg
indicating what failed. -
If the query fails and
raise_error
is set totrue
– Raises an exception.
The following is an example:
... r, e = msys.db.fetch_row (cache, query, nil, { raise_error = false }); if (r ~= nil) then for k, v in pairs(r) do print(k, v); end elseif (e ~= nil) then print "Query failed"; else print "No match"; 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”.