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

format_sql

(EXPERIMENTAL) Composes a SQL query client-side.

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

(EXPERIMENTAL) Composes a SQL query client-side.

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

PrevUpHomeNext