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 an old version of boost. Click here for the latest Boost documentation.
PrevUpHomeNext
connection::async_execute_statement

(Deprecated - will be removed in Boost 1.86) Executes a prepared statement.

template<
    class WritableFieldTuple,
    class CompletionToken,
    class EnableIf = typename std::enable_if<detail::is_writable_field_tuple<WritableFieldTuple>::value>::type>
auto
async_execute_statement(
    const statement& stmt,
    WritableFieldTuple&& params,
    results& result,
    CompletionToken&& token);
  » more...

(Deprecated - will be removed in Boost 1.86) Executes a prepared statement.

template<
    class WritableFieldTuple,
    class CompletionToken,
    class EnableIf = typename std::enable_if<detail::is_writable_field_tuple<WritableFieldTuple>::value>::type>
auto
async_execute_statement(
    const statement& stmt,
    WritableFieldTuple&& params,
    results& result,
    diagnostics& diag,
    CompletionToken&& token);
  » more...

PrevUpHomeNext