16 static QString InlineArguments;
17 static QString MultiQueries;
27 QString query()
const;
28 void setQuery(
const QString& _text,
bool _keepBindings =
false);
37 cres_qresult<void>
loadFromFile(
const QString& _filename);
41 void unsetOption(
const QString& _key);
43 template<
typename _T_>
44 void setOption(
const QString& _key,
const _T_& _value)
51 void bindValue(
const QString& _name,
const char* _literal)
55 template<
typename _T_>
56 void bindValue(
const QString& _name,
const _T_& _value)
62 template<
typename _T_,
typename... _TOther_>
63 void bindValues(
const QString& _name,
const _T_& _value, _TOther_... _other)
65 bindValue(_name, _value);
66 bindValues(_other...);
73 QExplicitlySharedDataPointer<Private> d;