Qore SqlUtil Module Reference 1.9.1
Loading...
Searching...
No Matches
SqlResultInfo.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
26namespace SqlUtil {
28
31public hashdecl SqlResultInfo {
33 auto result;
34
36 string sql;
37
39 *softlist<auto> args;
40};
41};
Qore AbstractDatabase class definition.
Definition: AbstractDatabase.qc.dox.h:26
Return type for methods that return a result and also SQL info.
Definition: SqlResultInfo.qc.dox.h:31
auto result
The SQL result.
Definition: SqlResultInfo.qc.dox.h:33
*softlist< auto > args
Bind arguments used, if any.
Definition: SqlResultInfo.qc.dox.h:39
string sql
The SQL query text.
Definition: SqlResultInfo.qc.dox.h:36