Menu

[r8314]: / trunk / src / plain / ZPlainSqLiteDriver.pas  Maximize  Restore  History

Download this file

508 lines (443 with data), 26.3 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
{*********************************************************}
{ }
{ Zeos Database Objects }
{ Native Plain Drivers for SQLite }
{ }
{ Originally written by Sergey Seroukhov }
{ }
{*********************************************************}
{@********************************************************}
{ Copyright (c) 1999-2020 Zeos Development Group }
{ }
{ License Agreement: }
{ }
{ This library is distributed in the hope that it will be }
{ useful, but WITHOUT ANY WARRANTY; without even the }
{ implied warranty of MERCHANTABILITY or FITNESS FOR }
{ A PARTICULAR PURPOSE. See the GNU Lesser General }
{ Public License for more details. }
{ }
{ The source code of the ZEOS Libraries and packages are }
{ distributed under the Library GNU General Public }
{ License (see the file COPYING / COPYING.ZEOS) }
{ with the following modification: }
{ As a special exception, the copyright holders of this }
{ library give you permission to link this library with }
{ independent modules to produce an executable, }
{ regardless of the license terms of these independent }
{ modules, and to copy and distribute the resulting }
{ executable under terms of your choice, provided that }
{ you also meet, for each linked independent module, }
{ the terms and conditions of the license of that module. }
{ An independent module is a module which is not derived }
{ from or based on this library. If you modify this }
{ library, you may extend this exception to your version }
{ of the library, but you are not obligated to do so. }
{ If you do not wish to do so, delete this exception }
{ statement from your version. }
{ }
{ }
{ The project web site is located on: }
{ https://zeoslib.sourceforge.io/ (FORUM) }
{ http://sourceforge.net/p/zeoslib/tickets/ (BUGTRACKER)}
{ svn://svn.code.sf.net/p/zeoslib/code-0/trunk (SVN) }
{ }
{ http://www.sourceforge.net/projects/zeoslib. }
{ }
{ }
{ Zeos Development Group. }
{********************************************************@}
unit ZPlainSqLiteDriver;
interface
{$I ZPlain.inc}
{$IFNDEF ZEOS_DISABLE_SQLITE}
uses SysUtils, Classes, {$IFDEF MSEgui}mclasses,{$ENDIF}
ZCompatibility, ZPlainDriver;
const
WINDOWS_DLL_LOCATION = 'sqlite.dll';
WINDOWS_DLL3_LOCATION = 'sqlite3.dll';
LINUX_DLL_LOCATION = 'libsqlite'+SharedSuffix;
LINUX_DLL3_LOCATION = 'libsqlite3'+SharedSuffix;
SQLITE_ISO8859 = 1;
MASTER_NAME = 'sqlite_master';
TEMP_MASTER_NAME = 'sqlite_temp_master';
{ Return values for sqlite3_exec() and sqlite3_step() }
SQLITE_OK = 0; // Successful result
SQLITE_ERROR = 1; // SQL error or missing database
SQLITE_INTERNAL = 2; // An internal logic error in SQLite
SQLITE_PERM = 3; // Access permission denied
SQLITE_ABORT = 4; // Callback routine requested an abort
SQLITE_BUSY = 5; // The database file is locked
SQLITE_LOCKED = 6; // A table in the database is locked
SQLITE_NOMEM = 7; // A malloc() failed
SQLITE_READONLY = 8; // Attempt to write a readonly database
SQLITE_INTERRUPT = 9; // Operation terminated by sqlite3_interrupt()
SQLITE_IOERR = 10; // Some kind of disk I/O error occurred
SQLITE_CORRUPT = 11; // The database disk image is malformed
SQLITE_NOTFOUND = 12; // (Internal Only) Table or record not found
SQLITE_FULL = 13; // Insertion failed because database is full
SQLITE_CANTOPEN = 14; // Unable to open the database file
SQLITE_PROTOCOL = 15; // Database lock protocol error
SQLITE_EMPTY = 16; // (Internal Only) Database table is empty
SQLITE_SCHEMA = 17; // The database schema changed
SQLITE_TOOBIG = 18; // Too much data for one row of a table
SQLITE_CONSTRAINT = 19; // Abort due to contraint violation
SQLITE_MISMATCH = 20; // Data type mismatch
SQLITE_MISUSE = 21; // Library used incorrectly
SQLITE_NOLFS = 22; // Uses OS features not supported on host
SQLITE_AUTH = 23; // Authorization denied
SQLITE_FORMAT = 24; // Auxiliary database format error
SQLITE_RANGE = 25; // 2nd parameter to sqlite_bind out of range
SQLITE_NOTADB = 26; // File opened that is not a database file
SQLITE_NOTICE = 27; // The SQLITE_NOTICE result code is not returned by any C/C++ interface.
// However, SQLITE_NOTICE (or rather one of its extended error codes) is
// sometimes used as the first argument in an sqlite3_log() callback to indicate that an unusual operation is taking place.
SQLITE_WARNING = 28; // The SQLITE_WARNING result code is not returned by any C/C++ interface.
// However, SQLITE_WARNING (or rather one of its extended error codes) is
// sometimes used as the first argument in an sqlite3_log() callback to indicate
// that an unusual and possibly ill-advised operation is taking place.
SQLITE_ROW = 100; // sqlite3_step() has another row ready
SQLITE_DONE = 101; // sqlite3_step() has finished executing
SQLITE_NUMERIC = -1;
SQLITE_TEXT = -2;
SQLITE_ARGS = -3;
{
The second parameter to the access authorization function above will
be one of the values below. These values signify what kind of operation
is to be authorized. The 3rd and 4th parameters to the authorization
function will be parameters or NULL depending on which of the following
codes is used as the second parameter. The 5th parameter is the name
of the database ("main", "temp", etc.) if applicable. The 6th parameter
is the name of the inner-most trigger or view that is responsible for
the access attempt or NULL if this access attempt is directly from
input SQL code.
Arg-3 Arg-4
}
SQLITE_COPY = 0; // Table Name File Name
SQLITE_CREATE_INDEX = 1; // Index Name Table Name
SQLITE_CREATE_TABLE = 2; // Table Name NULL
SQLITE_CREATE_TEMP_INDEX = 3; // Index Name Table Name
SQLITE_CREATE_TEMP_TABLE = 4; // Table Name NULL
SQLITE_CREATE_TEMP_TRIGGER = 5; // Trigger Name Table Name
SQLITE_CREATE_TEMP_VIEW = 6; // View Name NULL
SQLITE_CREATE_TRIGGER = 7; // Trigger Name Table Name
SQLITE_CREATE_VIEW = 8; // View Name NULL
SQLITE_DELETE = 9; // Table Name NULL
SQLITE_DROP_INDEX = 10; // Index Name Table Name
SQLITE_DROP_TABLE = 11; // Table Name NULL
SQLITE_DROP_TEMP_INDEX = 12; // Index Name Table Name
SQLITE_DROP_TEMP_TABLE = 13; // Table Name NULL
SQLITE_DROP_TEMP_TRIGGER = 14; // Trigger Name Table Name
SQLITE_DROP_TEMP_VIEW = 15; // View Name NULL
SQLITE_DROP_TRIGGER = 16; // Trigger Name Table Name
SQLITE_DROP_VIEW = 17; // View Name NULL
SQLITE_INSERT = 18; // Table Name NULL
SQLITE_PRAGMA = 19; // Pragma Name 1st arg or NULL
SQLITE_READ = 20; // Table Name Column Name
SQLITE_SELECT = 21; // NULL NULL
SQLITE_TRANSACTION = 22; // NULL NULL
SQLITE_UPDATE = 23; // Table Name Column Name
SQLITE_ATTACH = 24; // Filename NULL
SQLITE_DETACH = 25; // Database Name NULL
{ The return value of the authorization function should be one of the
following constants: }
SQLITE_DENY = 1; // Abort the SQL statement with an error
SQLITE_IGNORE = 2; // Don't allow access, but don't generate an error
SQLITE_INTEGER = 1;
SQLITE_FLOAT = 2;
SQLITE3_TEXT = 3;
SQLITE_BLOB = 4;
SQLITE_NULL = 5;
//flags for sqlite3_open_v2
SQLITE_OPEN_READONLY = $00000001; //Ok for sqlite3_open_v2()
SQLITE_OPEN_READWRITE = $00000002; //Ok for sqlite3_open_v2()
SQLITE_OPEN_CREATE = $00000004; //Ok for sqlite3_open_v2()
SQLITE_OPEN_DELETEONCLOSE = $00000008; //VFS only
SQLITE_OPEN_EXCLUSIVE = $00000010; //VFS only
SQLITE_OPEN_AUTOPROXY = $00000020; //VFS only
SQLITE_OPEN_URI = $00000040; //Ok for sqlite3_open_v2()
SQLITE_OPEN_MEMORY = $00000080; //Ok for sqlite3_open_v2()
SQLITE_OPEN_MAIN_DB = $00000100; //VFS only
SQLITE_OPEN_TEMP_DB = $00000200; //VFS only
SQLITE_OPEN_TRANSIENT_DB = $00000400; //VFS only
SQLITE_OPEN_MAIN_JOURNAL = $00000800; //VFS only
SQLITE_OPEN_TEMP_JOURNAL = $00001000; //VFS only
SQLITE_OPEN_SUBJOURNAL = $00002000; //VFS only
SQLITE_OPEN_SUPER_JOURNAL = $00004000; //VFS only
SQLITE_OPEN_NOMUTEX = $00008000; //Ok for sqlite3_open_v2()
SQLITE_OPEN_FULLMUTEX = $00010000; //Ok for sqlite3_open_v2()
SQLITE_OPEN_SHAREDCACHE = $00020000; //Ok for sqlite3_open_v2()
SQLITE_OPEN_PRIVATECACHE = $00040000; //Ok for sqlite3_open_v2()
SQLITE_OPEN_WAL = $00080000; //VFS only
SQLITE_OPEN_NOFOLLOW = $01000000; //Ok for sqlite3_open_v2()
Reserved = $00F00000;
//Legacy compatibility
SQLITE_OPEN_MASTER_JOURNAL = $00004000; //VFS only
type
PPsqlite = ^Psqlite;
Psqlite = Pointer;
Psqlite_func = Pointer;
PPsqlite3_stmt = ^Psqlite3_stmt;
Psqlite3_stmt = Pointer;
Psqlite3_value = Pointer;
Tsqlite3_destructor_type = procedure(user: pointer); cdecl;
const
SQLITE_STATIC: Tsqlite3_destructor_type = nil;
SQLITE_TRANSIENT: Tsqlite3_destructor_type = Pointer(-1);
type
{ ************** Plain API Function types definition ************* }
Tsqlite_callback = function(p1: Pointer; p2: Integer; var p3: PAnsiChar;
var p4: PAnsiChar): Integer; cdecl;
Tsqlite_simple_callback = function(p1: Pointer): Integer; cdecl;
Tsqlite_busy_callback = function(p1: Pointer; const p2: PAnsiChar;
p3: Integer): Integer; cdecl;
Tsqlite_function_callback = procedure(p1: Psqlite_func; p2: Integer;
const p3: PPAnsiChar); cdecl;
Tsqlite_finalize_callback = procedure(p1: Psqlite_func); cdecl;
Tsqlite_auth_callback = function(p1: Pointer; p2: Integer; const p3: PAnsiChar;
const p4: PAnsiChar; const p5: PAnsiChar; const p6: PAnsiChar): Integer; cdecl;
Tsqlite_trace_callback = procedure(p1: Pointer; const p2: PAnsiChar); cdecl;
{ ************* Plain API Function variables definition ************ }
type
{** Represents a generic interface to SQLite native API. }
IZSQLitePlainDriver = interface (IZPlainDriver)
['{B931C952-3076-4ECB-9630-D900E8DB9869}']
end;
{** Implements a base driver for SQLite}
TZSQLitePlainDriver = class (TZAbstractPlainDriver, IZPlainDriver, IZSQLitePlainDriver)
public
sqlite3_open: function(const filename: PAnsiChar;var Qsqlite: Psqlite): Integer; cdecl;
sqlite3_open_v2: function(const filename: PAnsiChar; var Qsqlite: Psqlite; flags: integer; zVfs: PAnsiChar): Integer; cdecl;
sqlite3_close: function(db: Psqlite): Integer; cdecl;
{ prepared statement api }
sqlite3_prepare: function(
db: Psqlite; // Database handle
const zSql: PAnsiChar; // SQL statement, UTF-8 encoded
nBytes: Integer; // Maximum length of zSql in bytes. -1 = null terminated
out ppStmt: Psqlite3_stmt; // OUT: Statement handle
var pzTail: PAnsichar // OUT: Pointer to unused portion of zSql
): Integer; cdecl;
sqlite3_prepare_v2: function(
db: Psqlite; // Database handle
const zSql: PAnsiChar; // SQL statement, UTF-8 encoded
nBytes: Integer; // Maximum length of zSql in bytes. -1 = null terminated
out ppStmt: Psqlite3_stmt; // OUT: Statement handle
var pzTail: PAnsichar // OUT: Pointer to unused portion of zSql
): Integer; cdecl;
sqlite3_prepare_v3: function(
db: Psqlite; // Database handle
const zSql: PAnsiChar; // SQL statement, UTF-8 encoded
nBytes: Integer; // Maximum length of zSql in bytes. -1 = null terminated
prepFlags: cardinal; // Zero or more SQLITE_PREPARE_ flags
out ppStmt: Psqlite3_stmt; // OUT: Statement handle
var pzTail: PAnsichar // OUT: Pointer to unused portion of zSql
): Integer; cdecl;
sqlite3_bind_parameter_count: function(pStmt: Psqlite3_stmt): Integer; cdecl;
sqlite3_bind_parameter_name: function(pStmt: Psqlite3_stmt; ParamIndex: Integer): PAnsichar; cdecl;
sqlite3_bind_parameter_index: function(pStmt: Psqlite3_stmt; const zName: PAnsiChar): Integer; cdecl;
sqlite3_clear_bindings: function(pStmt: Psqlite3_stmt): Integer; cdecl;
sqlite3_column_count: function(pStmt: Psqlite3_stmt): Integer; cdecl;
sqlite3_column_name: function(pStmt: Psqlite3_stmt; iCol: Integer): PAnsiChar; cdecl;
sqlite3_column_database_name: function(pStmt: Psqlite3_stmt; iCol: Integer): PAnsiChar; cdecl;
sqlite3_column_table_name: function(pStmt: Psqlite3_stmt; iCol: Integer): PAnsiChar; cdecl;
sqlite3_column_origin_name: function(pStmt: Psqlite3_stmt; iCol: Integer): PAnsiChar; cdecl;
sqlite3_column_decltype: function(pStmt: Psqlite3_stmt; iCol: Integer): PAnsiChar; cdecl;
sqlite3_step: function(pStmt: Psqlite3_stmt): Integer; cdecl;
sqlite3_data_count: function (pStmt: Psqlite3_stmt): Integer; cdecl;
sqlite3_bind_blob: function(pStmt: Psqlite3_stmt; ParamIndex: Integer; const Buffer: Pointer; N: Integer; ValDestructor: Tsqlite3_destructor_type): Integer; cdecl;
sqlite3_bind_double: function(pStmt: Psqlite3_stmt; ParamIndex: Integer; const Value: Double): Integer; cdecl;
sqlite3_bind_int: function(pStmt: Psqlite3_stmt; ParamIndex: Integer; Value: Integer): Integer; cdecl;
sqlite3_bind_int64: function(pStmt: Psqlite3_stmt; ParamIndex: Integer; const Value: Int64): Integer; cdecl;
sqlite3_bind_null: function(pStmt: Psqlite3_stmt; ParamIndex: Integer): Integer; cdecl;
sqlite3_bind_text: function(pStmt: Psqlite3_stmt; ParamIndex: Integer; const Text: PAnsiChar; N: Integer; ValDestructor: Tsqlite3_destructor_type): Integer; cdecl;
sqlite3_bind_value: function(pStmt: Psqlite3_stmt; ParamIndex: Integer; const Value: Psqlite3_value): Integer; cdecl;
sqlite3_bind_zeroblob: function(pStmt: Psqlite3_stmt; ParamIndex: Integer; N: Integer): Integer; cdecl;
sqlite3_finalize: function(pStmt: Psqlite3_stmt): Integer; cdecl;
sqlite3_reset: function(pStmt: Psqlite3_stmt): Integer; cdecl;
sqlite3_enable_load_extension: function(db: Psqlite; OnOff: Integer): Integer; cdecl;
sqlite3_load_extension: function(db: Psqlite; const zFile: PAnsiChar; zProc: Pointer; var pzErrMsg: PAnsiChar): Integer; cdecl;
sqlite3_column_blob: function(Stmt: Psqlite3_stmt; iCol:integer): Pointer; cdecl;
sqlite3_column_bytes: function(Stmt: Psqlite3_stmt; iCol: Integer): integer; cdecl;
sqlite3_column_double: function(Stmt: Psqlite3_stmt; iCol: Integer): Double; cdecl;
sqlite3_column_int: function(Stmt: Psqlite3_stmt; iCol: Integer): Integer; cdecl;
sqlite3_column_int64: function(Stmt: Psqlite3_stmt; iCol: Integer): Int64; cdecl;
sqlite3_column_text: function(Stmt: Psqlite3_stmt; iCol: Integer): PAnsiChar; cdecl;
sqlite3_column_type: function(Stmt: Psqlite3_stmt; iCol: Integer): Integer; cdecl;
sqlite3_exec: function(db: Psqlite; const sql: PAnsiChar; sqlite_callback: Tsqlite_callback;
arg: Pointer; var errmsg: PAnsiChar): Integer; cdecl;
sqlite3_errmsg: function(db: Psqlite): PAnsiChar; cdecl;
sqlite3_errstr: function(code: Integer): PAnsiChar; cdecl;
sqlite3_extended_errcode: function(db: Psqlite): integer; cdecl;
sqlite3_last_insert_rowid: function(db: Psqlite): Int64; cdecl;
sqlite3_changes: function(db: Psqlite): Integer; cdecl;
sqlite3_interrupt: procedure(db: Psqlite); cdecl;
sqlite3_is_interrupted: function(db: Psqlite): Integer; cdecl;
sqlite3_complete: function(const sql: PAnsiChar): Integer; cdecl;
sqlite3_busy_handler: procedure(db: Psqlite; callback: Tsqlite_busy_callback; ptr: Pointer); cdecl;
sqlite3_busy_timeout: procedure(db: Psqlite; ms: Integer); cdecl;
sqlite3_free: procedure(ptr: Pointer); cdecl;
sqlite3_libversion: function: PAnsiChar; cdecl;
sqlite3_function_type: function(db: Psqlite; const zName: PAnsiChar; datatype: Integer): Integer; cdecl;
sqlite3_result_text: function(func: Psqlite_func; const arg: PAnsiChar;
len: Integer; UN: Tsqlite_simple_callback): PAnsiChar; cdecl;
sqlite3_result_int: procedure(func: Psqlite_func; arg: Integer); cdecl;
sqlite3_result_double: procedure(func: Psqlite_func; arg: Double); cdecl;
sqlite3_result_error: procedure(func: Psqlite_func; const arg: PAnsiChar; len: Integer); cdecl;
sqlite3_user_data: function(func: Psqlite_func): Pointer; cdecl;
sqlite3_aggregate_context: function(func: Psqlite_func; nBytes: Integer): Pointer; cdecl;
sqlite3_aggregate_count: function(func: Psqlite_func): Integer; cdecl;
sqlite3_set_authorizer: function(db: Psqlite; callback: Tsqlite_auth_callback; pUserData: Pointer): Integer; cdecl;
sqlite3_trace: function(db: Psqlite; callback: Tsqlite_trace_callback; ptr: Pointer): Pointer; cdecl;
sqlite3_progress_handler: procedure(db: Psqlite; p1: Integer; callback: Tsqlite_simple_callback; ptr: Pointer); cdecl;
sqlite3_commit_hook: function(db: Psqlite; callback: Tsqlite_simple_callback; ptr: Pointer): Pointer; cdecl;
sqlite3_rekey: function(db: Psqlite; const pKey: Pointer; nKey: Integer): Integer; cdecl;
sqlite3_key: function(db: Psqlite; const pKey: Pointer; nKey: Integer): Integer; cdecl;
sqlite3_backup_init: function(pDest: Psqlite; const zDestName: PAnsiChar; pSource: Psqlite; const zSourceName: PAnsiChar):Pointer; cdecl;
sqlite3_backup_step: function(p: Psqlite; nPage: Integer): Integer; cdecl;
sqlite3_backup_finish: function(p: Psqlite): Integer; cdecl;
sqlite3_backup_remaining: function(p: Psqlite): Integer; cdecl;
sqlite3_backup_pagecount: function(p: Psqlite): Integer; cdecl;
protected
function GetUnicodeCodePageName: String; override;
procedure LoadCodePages; override;
public
constructor Create;
end;
{** Implements a driver for SQLite 3 }
TZSQLite3PlainDriver = class (TZSQLitePlainDriver)
protected
function Clone: IZPlainDriver; override;
procedure LoadApi; override;
public
constructor Create;
function GetProtocol: string; override;
function GetDescription: string; override;
end;
{$ENDIF ZEOS_DISABLE_SQLITE}
implementation
{$IFNDEF ZEOS_DISABLE_SQLITE}
uses ZPlainLoader, ZEncoding{$IFDEF WITH_UNITANSISTRINGS}, AnsiStrings{$ENDIF};
{ TZSQLitePlainDriver }
function TZSQLitePlainDriver.GetUnicodeCodePageName: String;
begin
Result := 'UTF-8'
end;
procedure TZSQLitePlainDriver.LoadCodePages; //Egonhugeist
begin
{ MultiByte }
AddCodePage('UTF-8', 1, ceUTF8, zCP_UTF8, '', 4);
end;
constructor TZSQLitePlainDriver.Create;
begin
inherited create;
FLoader := TZNativeLibraryLoader.Create([]);
{$IFDEF MSWINDOWS}
FLoader.AddLocation(WINDOWS_DLL_LOCATION);
{$ELSE}
FLoader.AddLocation(LINUX_DLL_LOCATION);
FLoader.AddLocation(LINUX_DLL_LOCATION+'.0');
{$ENDIF}
end;
{ TZSQLite3PlainDriver }
function TZSQLite3PlainDriver.Clone: IZPlainDriver;
begin
Result := TZSQLite3PlainDriver.Create;
end;
procedure TZSQLite3PlainDriver.LoadApi;
begin
{ ************** Load adresses of API Functions ************* }
with Loader do begin
@sqlite3_open := GetAddress('sqlite3_open');
@sqlite3_open_v2 := GetAddress('sqlite3_open_v2');
@sqlite3_close := GetAddress('sqlite3_close');
{ prepared Statment api }
@sqlite3_prepare := GetAddress('sqlite3_prepare');
@sqlite3_prepare_v2 := GetAddress('sqlite3_prepare_v2');
@sqlite3_prepare_v3 := GetAddress('sqlite3_prepare_v3');
@sqlite3_bind_parameter_count := GetAddress('sqlite3_bind_parameter_count');
@sqlite3_bind_parameter_name := GetAddress('sqlite3_bind_parameter_name');
@sqlite3_bind_parameter_index := GetAddress('sqlite3_bind_parameter_index');
@sqlite3_clear_bindings := GetAddress('sqlite3_clear_bindings');
@sqlite3_column_count := GetAddress('sqlite3_column_count');
@sqlite3_column_bytes := GetAddress('sqlite3_column_bytes');
@sqlite3_column_blob := GetAddress('sqlite3_column_blob');
@sqlite3_column_double := GetAddress('sqlite3_column_double');
@sqlite3_column_int := GetAddress('sqlite3_column_int');
@sqlite3_column_int64 := GetAddress('sqlite3_column_int64');
@sqlite3_column_text := GetAddress('sqlite3_column_text');
@sqlite3_column_type := GetAddress('sqlite3_column_type');
@sqlite3_column_name := GetAddress('sqlite3_column_name');
@sqlite3_column_database_name := GetAddress('sqlite3_column_database_name');
@sqlite3_column_table_name := GetAddress('sqlite3_column_table_name');
@sqlite3_column_origin_name := GetAddress('sqlite3_column_origin_name');
@sqlite3_column_decltype := GetAddress('sqlite3_column_decltype');
@sqlite3_step := GetAddress('sqlite3_step');
@sqlite3_data_count := GetAddress('sqlite3_data_count');
@sqlite3_bind_blob := GetAddress('sqlite3_bind_blob');
@sqlite3_bind_double := GetAddress('sqlite3_bind_double');
@sqlite3_bind_int := GetAddress('sqlite3_bind_int');
@sqlite3_bind_int64 := GetAddress('sqlite3_bind_int64');
@sqlite3_bind_null := GetAddress('sqlite3_bind_null');
@sqlite3_bind_text := GetAddress('sqlite3_bind_text');
@sqlite3_bind_value := GetAddress('sqlite3_bind_value');
@sqlite3_bind_zeroblob := GetAddress('sqlite3_bind_zeroblob');
@sqlite3_finalize := GetAddress('sqlite3_finalize');
@sqlite3_reset := GetAddress('sqlite3_reset');
@sqlite3_enable_load_extension := GetAddress('sqlite3_enable_load_extension');
@sqlite3_load_extension := GetAddress('sqlite3_load_extension');
@sqlite3_exec := GetAddress('sqlite3_exec');
@sqlite3_last_insert_rowid := GetAddress('sqlite3_last_insert_rowid');
@sqlite3_changes := GetAddress('sqlite3_changes');
@sqlite3_errmsg := GetAddress('sqlite3_errmsg');
@sqlite3_errstr := GetAddress('sqlite3_errstr');
@sqlite3_extended_errcode := GetAddress('sqlite3_extended_errcode');
@sqlite3_interrupt := GetAddress('sqlite3_interrupt');
@sqlite3_is_interrupted := GetAddress('sqlite3_is_interrupted');
@sqlite3_complete := GetAddress('sqlite3_complete');
@sqlite3_busy_handler := GetAddress('sqlite3_busy_handler');
@sqlite3_busy_timeout := GetAddress('sqlite3_busy_timeout');
@sqlite3_free := GetAddress('sqlite3_free');
@sqlite3_libversion := GetAddress('sqlite3_libversion');
@sqlite3_function_type := GetAddress('sqlite3_function_type');
@sqlite3_result_text := GetAddress('sqlite3_result_text');
@sqlite3_result_int := GetAddress('sqlite3_result_int');
@sqlite3_result_double := GetAddress('sqlite3_result_double');
@sqlite3_result_error := GetAddress('sqlite3_result_error');
@sqlite3_user_data := GetAddress('sqlite3_user_data');
@sqlite3_aggregate_context := GetAddress('sqlite3_aggregate_context');
@sqlite3_aggregate_count := GetAddress('sqlite3_aggregate_count');
@sqlite3_set_authorizer := GetAddress('sqlite3_set_authorizer');
@sqlite3_trace := GetAddress('sqlite3_trace');
@sqlite3_progress_handler := GetAddress('sqlite3_progress_handler');
@sqlite3_commit_hook := GetAddress('sqlite3_commit_hook');
@sqlite3_rekey := GetAddress('sqlite3_rekey');
@sqlite3_key := GetAddress('sqlite3_key');
{ backup api }
@sqlite3_backup_init := GetAddress('sqlite3_backup_init');
@sqlite3_backup_step := GetAddress('sqlite3_backup_step');
@sqlite3_backup_finish := GetAddress('sqlite3_backup_finish');
@sqlite3_backup_remaining := GetAddress('sqlite3_backup_remaining');
@sqlite3_backup_pagecount := GetAddress('sqlite3_backup_pagecount');
end;
end;
constructor TZSQLite3PlainDriver.Create;
begin
inherited Create;
{$IFDEF MSWINDOWS}
FLoader.AddLocation(WINDOWS_DLL3_LOCATION);
{$ELSE}
FLoader.AddLocation(LINUX_DLL3_LOCATION);
FLoader.AddLocation(LINUX_DLL3_LOCATION+'.0');
{$ENDIF}
LoadCodePages;
end;
function TZSQLite3PlainDriver.GetProtocol: string;
begin
Result := 'sqlite';
end;
function TZSQLite3PlainDriver.GetDescription: string;
begin
Result := 'Native Plain Driver for SQLite 3+';
end;
{$ENDIF ZEOS_DISABLE_SQLITE}
end.
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.