| 173 | { |
| 174 | public: |
| 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 | { |
nothing calls this directly
no outgoing calls
no test coverage detected