You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 6, 2026. It is now read-only.
Nicuvëo edited this page Mar 29, 2014
·
4 revisions
When building a query statement, one can specify parameters that ought to be specified at a later time (as specified in sqlite3's documentation. SAW provides a few helper macros and types around this usage.
--
Types
Name
Underlying type
ParameterIndex
int
ParameterName
const char*
ParameterKey
boost::variant<ParameterIndex, ParameterName>
Parameter
std::pair<ParameterKey, Value>
Parameters
std::vector
--
Macros
The SAW_PLIST macros allows you to inline parameters: