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_start_statement_execution

Starts a statement execution as a multi-function operation.

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

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

template<
    class FieldViewFwdIterator,
    class CompletionToken>
auto
async_start_statement_execution(
    const statement& stmt,
    FieldViewFwdIterator params_first,
    FieldViewFwdIterator params_last,
    execution_state& st,
    CompletionToken&& token);
  » more...

template<
    class FieldViewFwdIterator,
    class CompletionToken>
auto
async_start_statement_execution(
    const statement& stmt,
    FieldViewFwdIterator params_first,
    FieldViewFwdIterator params_last,
    execution_state& st,
    diagnostics& diag,
    CompletionToken&& token);
  » more...

PrevUpHomeNext