1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-07-05 08:27:10 +02:00

Implemented format based query execution for SQLite database connection.

This commit is contained in:
Sandu Liviu Catalin
2015-11-09 08:05:36 +02:00
parent 00da988cc2
commit dfc5701799
3 changed files with 143 additions and 0 deletions

View File

@ -381,6 +381,16 @@ public:
*/
Connection CopyToDatabase(const SQChar * path);
/* --------------------------------------------------------------------------------------------
* Attempt to execute the specified query.
*/
static SQInteger ExecF(HSQUIRRELVM vm);
/* --------------------------------------------------------------------------------------------
* Attempt to queue the specified query.
*/
static SQInteger QueueF(HSQUIRRELVM vm);
protected:
/* --------------------------------------------------------------------------------------------