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

PrevUpHomeNext
pipeline_request::add_execute

Adds a stage that executes a text query.

pipeline_request&
add_execute(
    string_view query);
  » more...

Adds a stage that executes a prepared statement.

template<
    class... WritableField>
pipeline_request&
add_execute(
    statement stmt,
    const WritableField&... params);
  » more...

PrevUpHomeNext