Add alternative methods to execute MySQL queries with formatting support. Should close #27

This commit is contained in:
Sandu Liviu Catalin
2016-07-27 22:52:59 +03:00
parent f7b0909ed7
commit 9de5aa9980
2 changed files with 227 additions and 0 deletions
+16
View File
@@ -410,6 +410,22 @@ public:
* Create a new transaction on the managed connection.
*/
Transaction GetTransaction();
/* --------------------------------------------------------------------------------------------
* Attempt to execute the specified query.
*/
static SQInteger ExecuteF(HSQUIRRELVM vm);
/* --------------------------------------------------------------------------------------------
* Attempt to execute the specified query.
*/
static SQInteger InsertF(HSQUIRRELVM vm);
/* --------------------------------------------------------------------------------------------
* Attempt to execute the specified query.
*/
static SQInteger QueryF(HSQUIRRELVM vm);
};
} // Namespace:: SqMod