Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

format_sql

Composes a SQL query client-side.

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

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

PrevUpHomeNext