From 67369a1defeb2ee11d7e3cb60994f5f89c9726a8 Mon Sep 17 00:00:00 2001 From: kiritow <1362050620@qq.com> Date: Fri, 21 Apr 2017 13:20:21 +0800 Subject: [PATCH] Change previous SQLDB::exec(...callback...) to SQLDB::exec_raw --- MiniEngine_SQLite.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/MiniEngine_SQLite.h b/MiniEngine_SQLite.h index 5c97aa5..cc3a507 100644 --- a/MiniEngine_SQLite.h +++ b/MiniEngine_SQLite.h @@ -51,8 +51,7 @@ public: int exec(const std::string& SQLCommand); - /// Reserved For Capability - int exec(const std::string& SQLCommand,SQLCallback callback,void* param); + int exec_raw(const std::string& SQLCommand,SQLCallback callback,void* param); const char* getErrorMsg(); void clearError();