| 81 | } |
| 82 | |
| 83 | sqlite_connection::~sqlite_connection() |
| 84 | { |
| 85 | if (db) |
| 86 | sqlite3_close(db); |
| 87 | } |
| 88 | |
| 89 | schema_sqlite::schema_sqlite(std::string &conninfo, bool no_catalog) |
| 90 | : sqlite_connection(conninfo) |
nothing calls this directly
no outgoing calls
no test coverage detected