insert_t.cc
Go to the documentation of this file.
1 #include "cetlib/sqlite/insert.h"
2 
3 #include <cassert>
4 #include <string>
5 
6 int
7 main()
8 {
9  auto const test = cet::sqlite::detail::values_str(1, "hello", 10);
10  assert(test == "1,\"hello\",10");
11 }
int main()
Definition: insert_t.cc:7
std::string values_str(Args const &...args)
Definition: insert.h:82