3

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;
};
4

1 回答 1

6

在您选择的搜索引擎上搜索“SQLite RAII”会找到这个库

于 2013-05-27T07:38:14.227 回答