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