SQLite 带有 C 风格的接口,您需要在其中显式关闭每个资源(无析构函数)。
int rc = sqlite3_open16(databaseFileName, &sqlite->db);
...
sqlite3_close(_sqlite->db);
是否有可用的 C++ 接口或围绕 C 样式接口的包装器,它会添加析构函数,例如gtkmm是 GTK+ 的?就像是:
class SQLiteDb
{
public:
SQLiteDb() {
int rc = sqlite3_open16(databaseFileName, &db);
if(rc != SQLITE_OK){
std::string errorText = sqlite3_errmsg(db);
throw std::runtime_error(errorText);
}
}
~SQLiteDb() {
sqlite3_close(db);
}
private:
sqlite3 *db;
};