diff --git a/MiniEngine_SQLite.cpp b/MiniEngine_SQLite.cpp index 31e1089..9248233 100644 --- a/MiniEngine_SQLite.cpp +++ b/MiniEngine_SQLite.cpp @@ -81,7 +81,7 @@ int SQLDB::exec(const std::string& SQLCommand) 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); }