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_start_execution (1 of 2 overloads)

Starts a SQL execution as a multi-function operation.

Synopsis
template<
    class ExecutionRequest,
    class ExecutionStateType,
    class CompletionToken>
auto
async_start_execution(
    ExecutionRequest&& req,
    ExecutionStateType& st,
    CompletionToken&& token);
Description

Writes the execution request and reads the initial server response and the column metadata, but not the generated rows or subsequent resultsets, if any. st may be either an execution_state or static_execution_state object.

After this operation completes, st will have execution_state::meta populated. Metadata will be populated according to this->meta_mode().

If the operation generated any rows or more than one resultset, these must be read (by using read_some_rows and read_resultset_head) before engaging in any further network operation. Otherwise, the results are undefined.

req may be either a type convertible to string_view containing valid SQL or a bound prepared statement, obtained by calling statement::bind. If a string, it must be encoded using the connection's character set. Any string parameters provided to statement::bind should also be encoded using the connection's character set.

When using the static interface, this function will detect schema mismatches for the first resultset. Further errors may be detected by read_resultset_head and /root/project/libs/mysql/include/boost/mysql/connection.hpp

Object lifetimes

If CompletionToken is a deferred completion token (e.g. use_awaitable), the caller is responsible for managing req's validity following these rules:

Handler signature

The handler signature for this operation is void(boost::mysql::error_code).


PrevUpHomeNext