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 to view this page for the latest version.
PrevUpHomeNext
connection::async_execute_statement

Executes a prepared statement.

template<
    class FieldLikeTuple,
    class CompletionToken,
    class EnableIf = detail::enable_if_field_like_tuple<FieldLikeTuple>>
auto
async_execute_statement(
    const statement& stmt,
    FieldLikeTuple&& params,
    results& result,
    CompletionToken&& token);
  » more...

template<
    class FieldLikeTuple,
    class CompletionToken,
    class EnableIf = detail::enable_if_field_like_tuple<FieldLikeTuple>>
auto
async_execute_statement(
    const statement& stmt,
    FieldLikeTuple&& params,
    results& result,
    diagnostics& diag,
    CompletionToken&& token);
  » more...

PrevUpHomeNext