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

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

template<
    class WritableFieldTuple,
    class EnableIf = typename std::enable_if<detail::is_writable_field_tuple<WritableFieldTuple>::value>::type>
void
execute_statement(
    const statement& stmt,
    const WritableFieldTuple& params,
    results& result,
    error_code& err,
    diagnostics& diag);
  » more...

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

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

PrevUpHomeNext