Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for a snapshot of the develop branch, built from commit a0dc1f9511.
PrevUpHomeNext

ExecutionRequest concept

An execution request represents a SQL statement to be executed by the server, plus any parameters required to run the query. It may model a plain text query, or a prepared statement handle with bound parameters.

Formally, a type T is a ExecutionRequest if it fulfills any of the following:

This definition may be extended in future versions, but the above types will still satisfy ExecutionRequest.


PrevUpHomeNext