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

format_sql

(EXPERIMENTAL) Composes a SQL query client-side.

template<
    class... Formattable>
std::string
format_sql(
    const format_options& opts,
    constant_string_view format_str,
    const Formattable&... args);
  » more...

(EXPERIMENTAL) Composes a SQL query client-side.

std::string
format_sql(
    const format_options& opts,
    constant_string_view format_str,
    std::initializer_list< format_arg > args);
  » more...

PrevUpHomeNext