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::start_statement_execution

Starts a statement execution as a multi-function operation.

template<
    class FieldLikeTuple,
    class EnableIf = detail::enable_if_field_like_tuple<FieldLikeTuple>>
void
start_statement_execution(
    const statement& stmt,
    const FieldLikeTuple& params,
    execution_state& ex,
    error_code& err,
    diagnostics& diag);
  » more...

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

template<
    class FieldViewFwdIterator>
void
start_statement_execution(
    const statement& stmt,
    FieldViewFwdIterator params_first,
    FieldViewFwdIterator params_last,
    execution_state& st,
    error_code& ec,
    diagnostics& diag);
  » more...

template<
    class FieldViewFwdIterator>
void
start_statement_execution(
    const statement& stmt,
    FieldViewFwdIterator params_first,
    FieldViewFwdIterator params_last,
    execution_state& st);
  » more...

PrevUpHomeNext