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_to

(EXPERIMENTAL) Composes a SQL query client-side appending it to a format context.

template<
    class... Formattable>
void
format_sql_to(
    format_context_base& ctx,
    constant_string_view format_str,
    Formattable&&... args);
  » more...

(EXPERIMENTAL) Composes a SQL query client-side appending it to a format context.

void
format_sql_to(
    format_context_base& ctx,
    constant_string_view format_str,
    std::initializer_list< format_arg > args);
  » more...

PrevUpHomeNext