Merge branch 'mingw-dev-sqlite' into mingw-dev

Bug Fixed in branch mingw-dev-sqlite.
This commit is contained in:
Kirigaya Kazuto 2017-04-22 10:34:16 +08:00
commit 976ca24326

View File

@ -81,7 +81,7 @@ int SQLDB::exec(const std::string& SQLCommand)
return _exec_real(SQLCommand,nullptr,nullptr); return _exec_real(SQLCommand,nullptr,nullptr);
} }
int SQLDB::exec(const std::string& SQLCommand,SQLCallback callback,void* param) int SQLDB::exec_raw(const std::string& SQLCommand,SQLCallback callback,void* param)
{ {
return _exec_real(SQLCommand,callback,param); return _exec_real(SQLCommand,callback,param);
} }