Adjust the SQLite module to use the new method of receiving formatted strings.

Several minor bugfixes and improvements came with this migration as well.
This commit is contained in:
Sandu Liviu Catalin
2016-11-22 16:11:05 +02:00
parent c541fb3ea9
commit 568bc385e9
10 changed files with 92 additions and 396 deletions
+2 -2
View File
@@ -87,7 +87,7 @@ public:
/* --------------------------------------------------------------------------------------------
* Create the database statement resource.
*/
void Create(CSStr query);
void Create(CSStr query, SQInteger length = -1);
/* --------------------------------------------------------------------------------------------
* Check whether a specific column index is in range.
@@ -108,7 +108,7 @@ public:
/* --------------------------------------------------------------------------------------------
* Retrieve the column index associated with the specified name.
*/
Int32 GetColumnIndex(CSStr name);
Int32 GetColumnIndex(CSStr name, SQInteger length = -1);
/* --------------------------------------------------------------------------------------------
* Retrieve the message of the last received error code.