1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-06-19 16:47:14 +02:00

Fixed a range error in the SQLite plugin when validating column indexes.

Added an extra flush overload to flush all elements in a handled manner.
Prefixed the Server table to not clutter the user space.
This commit is contained in:
Sandu Liviu Catalin
2016-03-13 13:39:17 +02:00
parent a00e8c964f
commit bab8146c89
5 changed files with 18 additions and 6 deletions

View File

@ -221,6 +221,7 @@ void RegisterAPI(HSQUIRRELVM vm)
.Func(_SC("PopQueue"), &Connection::PopQueue)
.Overload< Int32 (Connection::*)(void) >(_SC("Flush"), &Connection::Flush)
.Overload< Int32 (Connection::*)(Uint32) >(_SC("Flush"), &Connection::Flush)
.Overload< Int32 (Connection::*)(Object &, Function &) >(_SC("Flush"), &Connection::Flush)
.Overload< Int32 (Connection::*)(Uint32, Object &, Function &) >(_SC("Flush"), &Connection::Flush)
.SquirrelFunc(_SC("ExecF"), &Connection::ExecF)
.SquirrelFunc(_SC("QueueF"), &Connection::QueueF)