MCPcopy Create free account
hub / github.com/SOCI/soci / SetupAutoIncrementTable

Method SetupAutoIncrementTable

tests/sqlite3/test-sqlite3.cpp:175–183  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

173{
174public:
175 SetupAutoIncrementTable(soci::session& sql)
176 : m_sql(sql)
177 {
178 m_sql <<
179 "create table t("
180 " id integer primary key autoincrement,"
181 " name text"
182 ")";
183 }
184
185 ~SetupAutoIncrementTable()
186 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected