Fix Compile Error

This commit is contained in:
Kirigaya Kazuto 2017-04-22 10:33:43 +08:00
parent 67369a1def
commit 01a8eb27b1

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