-
Notifications
You must be signed in to change notification settings - Fork 1
/
lsqlite3.lua
1369 lines (1160 loc) · 46.5 KB
/
lsqlite3.lua
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
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
local ffi = require "ffi"
local bit = require "bit"
ffi.cdef[[
typedef struct sqlite3 sqlite3;
typedef long long int sqlite_int64;
typedef unsigned long long int sqlite_uint64;
typedef sqlite_int64 sqlite3_int64;
typedef sqlite_uint64 sqlite3_uint64;
typedef int (*sqlite3_callback)(void*,int,char**, char**);
typedef struct sqlite3_file sqlite3_file;
typedef struct sqlite3_io_methods sqlite3_io_methods;
typedef struct sqlite3_mutex sqlite3_mutex;
typedef struct sqlite3_vfs sqlite3_vfs;
typedef void (*sqlite3_syscall_ptr)(void);
typedef struct sqlite3_mem_methods sqlite3_mem_methods;
typedef struct sqlite3_stmt sqlite3_stmt;
typedef struct Mem sqlite3_value;
typedef struct sqlite3_context sqlite3_context;
typedef void (*sqlite3_destructor_type)(void*);
typedef struct sqlite3_vtab sqlite3_vtab;
typedef struct sqlite3_index_info sqlite3_index_info;
typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor;
typedef struct sqlite3_module sqlite3_module;
typedef struct sqlite3_blob sqlite3_blob;
typedef struct sqlite3_mutex_methods sqlite3_mutex_methods;
typedef struct sqlite3_pcache sqlite3_pcache;
typedef struct sqlite3_pcache_methods sqlite3_pcache_methods;
typedef struct sqlite3_backup sqlite3_backup;
typedef struct sqlite3_rtree_geometry sqlite3_rtree_geometry;
static const int SQLITE_VERSION_NUMBER = 3007009;
static const int SQLITE_OK = 0 /* Successful result */;
static const int SQLITE_ERROR = 1 /* SQL error or missing database */;
static const int SQLITE_INTERNAL = 2 /* Internal logic error in SQLite */;
static const int SQLITE_PERM = 3 /* Access permission denied */;
static const int SQLITE_ABORT = 4 /* Callback routine requested an abort */;
static const int SQLITE_BUSY = 5 /* The database file is locked */;
static const int SQLITE_LOCKED = 6 /* A table in the database is locked */;
static const int SQLITE_NOMEM = 7 /* A malloc() failed */;
static const int SQLITE_READONLY = 8 /* Attempt to write a readonly database */;
static const int SQLITE_INTERRUPT = 9 /* Operation terminated by sqlite3_interrupt()*/;
static const int SQLITE_IOERR = 10 /* Some kind of disk I/O error occurred */;
static const int SQLITE_CORRUPT = 11 /* The database disk image is malformed */;
static const int SQLITE_NOTFOUND = 12 /* Unknown opcode in sqlite3_file_control() */;
static const int SQLITE_FULL = 13 /* Insertion failed because database is full */;
static const int SQLITE_CANTOPEN = 14 /* Unable to open the database file */;
static const int SQLITE_PROTOCOL = 15 /* Database lock protocol error */;
static const int SQLITE_EMPTY = 16 /* Database is empty */;
static const int SQLITE_SCHEMA = 17 /* The database schema changed */;
static const int SQLITE_TOOBIG = 18 /* String or BLOB exceeds size limit */;
static const int SQLITE_CONSTRAINT = 19 /* Abort due to constraint violation */;
static const int SQLITE_MISMATCH = 20 /* Data type mismatch */;
static const int SQLITE_MISUSE = 21 /* Library used incorrectly */;
static const int SQLITE_NOLFS = 22 /* Uses OS features not supported on host */;
static const int SQLITE_AUTH = 23 /* Authorization denied */;
static const int SQLITE_FORMAT = 24 /* Auxiliary database format error */;
static const int SQLITE_RANGE = 25 /* 2nd parameter to sqlite3_bind out of range */;
static const int SQLITE_NOTADB = 26 /* File opened that is not a database file */;
static const int SQLITE_ROW = 100 /* sqlite3_step() has another row ready */;
static const int SQLITE_DONE = 101 /* sqlite3_step() has finished executing */;
static const int SQLITE_IOERR_READ = (SQLITE_IOERR | (1<<8));
static const int SQLITE_IOERR_SHORT_READ = (SQLITE_IOERR | (2<<8));
static const int SQLITE_IOERR_WRITE = (SQLITE_IOERR | (3<<8));
static const int SQLITE_IOERR_FSYNC = (SQLITE_IOERR | (4<<8));
static const int SQLITE_IOERR_DIR_FSYNC = (SQLITE_IOERR | (5<<8));
static const int SQLITE_IOERR_TRUNCATE = (SQLITE_IOERR | (6<<8));
static const int SQLITE_IOERR_FSTAT = (SQLITE_IOERR | (7<<8));
static const int SQLITE_IOERR_UNLOCK = (SQLITE_IOERR | (8<<8));
static const int SQLITE_IOERR_RDLOCK = (SQLITE_IOERR | (9<<8));
static const int SQLITE_IOERR_DELETE = (SQLITE_IOERR | (10<<8));
static const int SQLITE_IOERR_BLOCKED = (SQLITE_IOERR | (11<<8));
static const int SQLITE_IOERR_NOMEM = (SQLITE_IOERR | (12<<8));
static const int SQLITE_IOERR_ACCESS = (SQLITE_IOERR | (13<<8));
static const int SQLITE_IOERR_CHECKRESERVEDLOCK = (SQLITE_IOERR | (14<<8));
static const int SQLITE_IOERR_LOCK = (SQLITE_IOERR | (15<<8));
static const int SQLITE_IOERR_CLOSE = (SQLITE_IOERR | (16<<8));
static const int SQLITE_IOERR_DIR_CLOSE = (SQLITE_IOERR | (17<<8));
static const int SQLITE_IOERR_SHMOPEN = (SQLITE_IOERR | (18<<8));
static const int SQLITE_IOERR_SHMSIZE = (SQLITE_IOERR | (19<<8));
static const int SQLITE_IOERR_SHMLOCK = (SQLITE_IOERR | (20<<8));
static const int SQLITE_IOERR_SHMMAP = (SQLITE_IOERR | (21<<8));
static const int SQLITE_IOERR_SEEK = (SQLITE_IOERR | (22<<8));
static const int SQLITE_LOCKED_SHAREDCACHE = (SQLITE_LOCKED | (1<<8));
static const int SQLITE_BUSY_RECOVERY = (SQLITE_BUSY | (1<<8));
static const int SQLITE_CANTOPEN_NOTEMPDIR = (SQLITE_CANTOPEN | (1<<8));
static const int SQLITE_CORRUPT_VTAB = (SQLITE_CORRUPT | (1<<8));
static const int SQLITE_READONLY_RECOVERY = (SQLITE_READONLY | (1<<8));
static const int SQLITE_READONLY_CANTLOCK = (SQLITE_READONLY | (2<<8));
static const int SQLITE_OPEN_READONLY = 0x00000001 /* Ok for sqlite3_open_v2() */;
static const int SQLITE_OPEN_READWRITE = 0x00000002 /* Ok for sqlite3_open_v2() */;
static const int SQLITE_OPEN_CREATE = 0x00000004 /* Ok for sqlite3_open_v2() */;
static const int SQLITE_OPEN_DELETEONCLOSE = 0x00000008 /* VFS only */;
static const int SQLITE_OPEN_EXCLUSIVE = 0x00000010 /* VFS only */;
static const int SQLITE_OPEN_AUTOPROXY = 0x00000020 /* VFS only */;
static const int SQLITE_OPEN_URI = 0x00000040 /* Ok for sqlite3_open_v2() */;
static const int SQLITE_OPEN_MAIN_DB = 0x00000100 /* VFS only */;
static const int SQLITE_OPEN_TEMP_DB = 0x00000200 /* VFS only */;
static const int SQLITE_OPEN_TRANSIENT_DB = 0x00000400 /* VFS only */;
static const int SQLITE_OPEN_MAIN_JOURNAL = 0x00000800 /* VFS only */;
static const int SQLITE_OPEN_TEMP_JOURNAL = 0x00001000 /* VFS only */;
static const int SQLITE_OPEN_SUBJOURNAL = 0x00002000 /* VFS only */;
static const int SQLITE_OPEN_MASTER_JOURNAL = 0x00004000 /* VFS only */;
static const int SQLITE_OPEN_NOMUTEX = 0x00008000 /* Ok for sqlite3_open_v2() */;
static const int SQLITE_OPEN_FULLMUTEX = 0x00010000 /* Ok for sqlite3_open_v2() */;
static const int SQLITE_OPEN_SHAREDCACHE = 0x00020000 /* Ok for sqlite3_open_v2() */;
static const int SQLITE_OPEN_PRIVATECACHE = 0x00040000 /* Ok for sqlite3_open_v2() */;
static const int SQLITE_OPEN_WAL = 0x00080000 /* VFS only */;
static const int SQLITE_IOCAP_ATOMIC = 0x00000001;
static const int SQLITE_IOCAP_ATOMIC512 = 0x00000002;
static const int SQLITE_IOCAP_ATOMIC1K = 0x00000004;
static const int SQLITE_IOCAP_ATOMIC2K = 0x00000008;
static const int SQLITE_IOCAP_ATOMIC4K = 0x00000010;
static const int SQLITE_IOCAP_ATOMIC8K = 0x00000020;
static const int SQLITE_IOCAP_ATOMIC16K = 0x00000040;
static const int SQLITE_IOCAP_ATOMIC32K = 0x00000080;
static const int SQLITE_IOCAP_ATOMIC64K = 0x00000100;
static const int SQLITE_IOCAP_SAFE_APPEND = 0x00000200;
static const int SQLITE_IOCAP_SEQUENTIAL = 0x00000400;
static const int SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN = 0x00000800;
static const int SQLITE_LOCK_NONE = 0;
static const int SQLITE_LOCK_SHARED = 1;
static const int SQLITE_LOCK_RESERVED = 2;
static const int SQLITE_LOCK_PENDING = 3;
static const int SQLITE_LOCK_EXCLUSIVE = 4;
static const int SQLITE_SYNC_NORMAL = 0x00002;
static const int SQLITE_SYNC_FULL = 0x00003;
static const int SQLITE_SYNC_DATAONLY = 0x00010;
static const int SQLITE_FCNTL_LOCKSTATE = 1;
static const int SQLITE_GET_LOCKPROXYFILE = 2;
static const int SQLITE_SET_LOCKPROXYFILE = 3;
static const int SQLITE_LAST_ERRNO = 4;
static const int SQLITE_FCNTL_SIZE_HINT = 5;
static const int SQLITE_FCNTL_CHUNK_SIZE = 6;
static const int SQLITE_FCNTL_FILE_POINTER = 7;
static const int SQLITE_FCNTL_SYNC_OMITTED = 8;
static const int SQLITE_FCNTL_WIN32_AV_RETRY = 9;
static const int SQLITE_FCNTL_PERSIST_WAL = 10;
static const int SQLITE_FCNTL_OVERWRITE = 11;
static const int SQLITE_ACCESS_EXISTS = 0;
static const int SQLITE_ACCESS_READWRITE = 1 /* Used by PRAGMA temp_store_directory */;
static const int SQLITE_ACCESS_READ = 2 /* Unused */;
static const int SQLITE_SHM_UNLOCK = 1;
static const int SQLITE_SHM_LOCK = 2;
static const int SQLITE_SHM_SHARED = 4;
static const int SQLITE_SHM_EXCLUSIVE = 8;
static const int SQLITE_SHM_NLOCK = 8;
static const int SQLITE_CONFIG_SINGLETHREAD = 1 /* nil */;
static const int SQLITE_CONFIG_MULTITHREAD = 2 /* nil */;
static const int SQLITE_CONFIG_SERIALIZED = 3 /* nil */;
static const int SQLITE_CONFIG_MALLOC = 4 /* sqlite3_mem_methods* */;
static const int SQLITE_CONFIG_GETMALLOC = 5 /* sqlite3_mem_methods* */;
static const int SQLITE_CONFIG_SCRATCH = 6 /* void*, int sz, int N */;
static const int SQLITE_CONFIG_PAGECACHE = 7 /* void*, int sz, int N */;
static const int SQLITE_CONFIG_HEAP = 8 /* void*, int nByte, int min */;
static const int SQLITE_CONFIG_MEMSTATUS = 9 /* boolean */;
static const int SQLITE_CONFIG_MUTEX = 10 /* sqlite3_mutex_methods* */;
static const int SQLITE_CONFIG_GETMUTEX = 11 /* sqlite3_mutex_methods* */;
static const int SQLITE_CONFIG_LOOKASIDE = 13 /* int int */;
static const int SQLITE_CONFIG_PCACHE = 14 /* sqlite3_pcache_methods* */;
static const int SQLITE_CONFIG_GETPCACHE = 15 /* sqlite3_pcache_methods* */;
static const int SQLITE_CONFIG_LOG = 16 /* xFunc, void* */;
static const int SQLITE_CONFIG_URI = 17 /* int */;
static const int SQLITE_DBCONFIG_LOOKASIDE = 1001 /* void* int int */;
static const int SQLITE_DBCONFIG_ENABLE_FKEY = 1002 /* int int* */;
static const int SQLITE_DBCONFIG_ENABLE_TRIGGER = 1003 /* int int* */;
static const int SQLITE_DENY = 1 /* Abort the SQL statement with an error */;
static const int SQLITE_IGNORE = 2 /* Don't allow access, but don't generate an error */;
static const int SQLITE_CREATE_INDEX = 1 /* Index Name Table Name */;
static const int SQLITE_CREATE_TABLE = 2 /* Table Name NULL */;
static const int SQLITE_CREATE_TEMP_INDEX = 3 /* Index Name Table Name */;
static const int SQLITE_CREATE_TEMP_TABLE = 4 /* Table Name NULL */;
static const int SQLITE_CREATE_TEMP_TRIGGER = 5 /* Trigger Name Table Name */;
static const int SQLITE_CREATE_TEMP_VIEW = 6 /* View Name NULL */;
static const int SQLITE_CREATE_TRIGGER = 7 /* Trigger Name Table Name */;
static const int SQLITE_CREATE_VIEW = 8 /* View Name NULL */;
static const int SQLITE_DELETE = 9 /* Table Name NULL */;
static const int SQLITE_DROP_INDEX = 10 /* Index Name Table Name */;
static const int SQLITE_DROP_TABLE = 11 /* Table Name NULL */;
static const int SQLITE_DROP_TEMP_INDEX = 12 /* Index Name Table Name */;
static const int SQLITE_DROP_TEMP_TABLE = 13 /* Table Name NULL */;
static const int SQLITE_DROP_TEMP_TRIGGER = 14 /* Trigger Name Table Name */;
static const int SQLITE_DROP_TEMP_VIEW = 15 /* View Name NULL */;
static const int SQLITE_DROP_TRIGGER = 16 /* Trigger Name Table Name */;
static const int SQLITE_DROP_VIEW = 17 /* View Name NULL */;
static const int SQLITE_INSERT = 18 /* Table Name NULL */;
static const int SQLITE_PRAGMA = 19 /* Pragma Name 1st arg or NULL */;
static const int SQLITE_READ = 20 /* Table Name Column Name */;
static const int SQLITE_SELECT = 21 /* NULL NULL */;
static const int SQLITE_TRANSACTION = 22 /* Operation NULL */;
static const int SQLITE_UPDATE = 23 /* Table Name Column Name */;
static const int SQLITE_ATTACH = 24 /* Filename NULL */;
static const int SQLITE_DETACH = 25 /* Database Name NULL */;
static const int SQLITE_ALTER_TABLE = 26 /* Database Name Table Name */;
static const int SQLITE_REINDEX = 27 /* Index Name NULL */;
static const int SQLITE_ANALYZE = 28 /* Table Name NULL */;
static const int SQLITE_CREATE_VTABLE = 29 /* Table Name Module Name */;
static const int SQLITE_DROP_VTABLE = 30 /* Table Name Module Name */;
static const int SQLITE_FUNCTION = 31 /* NULL Function Name */;
static const int SQLITE_SAVEPOINT = 32 /* Operation Savepoint Name */;
static const int SQLITE_COPY = 0 /* No longer used */;
static const int SQLITE_LIMIT_LENGTH = 0;
static const int SQLITE_LIMIT_SQL_LENGTH = 1;
static const int SQLITE_LIMIT_COLUMN = 2;
static const int SQLITE_LIMIT_EXPR_DEPTH = 3;
static const int SQLITE_LIMIT_COMPOUND_SELECT = 4;
static const int SQLITE_LIMIT_VDBE_OP = 5;
static const int SQLITE_LIMIT_FUNCTION_ARG = 6;
static const int SQLITE_LIMIT_ATTACHED = 7;
static const int SQLITE_LIMIT_LIKE_PATTERN_LENGTH = 8;
static const int SQLITE_LIMIT_VARIABLE_NUMBER = 9;
static const int SQLITE_LIMIT_TRIGGER_DEPTH = 10;
static const int SQLITE_INTEGER = 1;
static const int SQLITE_FLOAT = 2;
static const int SQLITE_BLOB = 4;
static const int SQLITE_NULL = 5;
static const int SQLITE_TEXT = 3;
static const int SQLITE_UTF8 = 1;
static const int SQLITE_UTF16LE = 2;
static const int SQLITE_UTF16BE = 3;
static const int SQLITE_UTF16 = 4 /* Use native byte order */;
static const int SQLITE_ANY = 5 /* sqlite3_create_function only */;
static const int SQLITE_UTF16_ALIGNED = 8 /* sqlite3_create_collation only */;
static const int SQLITE_INDEX_CONSTRAINT_EQ = 2;
static const int SQLITE_INDEX_CONSTRAINT_GT = 4;
static const int SQLITE_INDEX_CONSTRAINT_LE = 8;
static const int SQLITE_INDEX_CONSTRAINT_LT = 16;
static const int SQLITE_INDEX_CONSTRAINT_GE = 32;
static const int SQLITE_INDEX_CONSTRAINT_MATCH = 64;
static const int SQLITE_MUTEX_FAST = 0;
static const int SQLITE_MUTEX_RECURSIVE = 1;
static const int SQLITE_MUTEX_STATIC_MASTER = 2;
static const int SQLITE_MUTEX_STATIC_MEM = 3 /* sqlite3_malloc() */;
static const int SQLITE_MUTEX_STATIC_MEM2 = 4 /* NOT USED */;
static const int SQLITE_MUTEX_STATIC_OPEN = 4 /* sqlite3BtreeOpen() */;
static const int SQLITE_MUTEX_STATIC_PRNG = 5 /* sqlite3_random() */;
static const int SQLITE_MUTEX_STATIC_LRU = 6 /* lru page list */;
static const int SQLITE_MUTEX_STATIC_LRU2 = 7 /* NOT USED */;
static const int SQLITE_MUTEX_STATIC_PMEM = 7 /* sqlite3PageMalloc() */;
static const int SQLITE_TESTCTRL_FIRST = 5;
static const int SQLITE_TESTCTRL_PRNG_SAVE = 5;
static const int SQLITE_TESTCTRL_PRNG_RESTORE = 6;
static const int SQLITE_TESTCTRL_PRNG_RESET = 7;
static const int SQLITE_TESTCTRL_BITVEC_TEST = 8;
static const int SQLITE_TESTCTRL_FAULT_INSTALL = 9;
static const int SQLITE_TESTCTRL_BENIGN_MALLOC_HOOKS = 10;
static const int SQLITE_TESTCTRL_PENDING_BYTE = 11;
static const int SQLITE_TESTCTRL_ASSERT = 12;
static const int SQLITE_TESTCTRL_ALWAYS = 13;
static const int SQLITE_TESTCTRL_RESERVE = 14;
static const int SQLITE_TESTCTRL_OPTIMIZATIONS = 15;
static const int SQLITE_TESTCTRL_ISKEYWORD = 16;
static const int SQLITE_TESTCTRL_PGHDRSZ = 17;
static const int SQLITE_TESTCTRL_SCRATCHMALLOC = 18;
static const int SQLITE_TESTCTRL_LOCALTIME_FAULT = 19;
static const int SQLITE_TESTCTRL_LAST = 19;
static const int SQLITE_STATUS_MEMORY_USED = 0;
static const int SQLITE_STATUS_PAGECACHE_USED = 1;
static const int SQLITE_STATUS_PAGECACHE_OVERFLOW = 2;
static const int SQLITE_STATUS_SCRATCH_USED = 3;
static const int SQLITE_STATUS_SCRATCH_OVERFLOW = 4;
static const int SQLITE_STATUS_MALLOC_SIZE = 5;
static const int SQLITE_STATUS_PARSER_STACK = 6;
static const int SQLITE_STATUS_PAGECACHE_SIZE = 7;
static const int SQLITE_STATUS_SCRATCH_SIZE = 8;
static const int SQLITE_STATUS_MALLOC_COUNT = 9;
static const int SQLITE_DBSTATUS_LOOKASIDE_USED = 0;
static const int SQLITE_DBSTATUS_CACHE_USED = 1;
static const int SQLITE_DBSTATUS_SCHEMA_USED = 2;
static const int SQLITE_DBSTATUS_STMT_USED = 3;
static const int SQLITE_DBSTATUS_LOOKASIDE_HIT = 4;
static const int SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE = 5;
static const int SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL = 6;
static const int SQLITE_DBSTATUS_CACHE_HIT = 7;
static const int SQLITE_DBSTATUS_CACHE_MISS = 8;
static const int SQLITE_DBSTATUS_MAX = 8 /* Largest defined DBSTATUS */;
static const int SQLITE_STMTSTATUS_FULLSCAN_STEP = 1;
static const int SQLITE_STMTSTATUS_SORT = 2;
static const int SQLITE_STMTSTATUS_AUTOINDEX = 3;
static const int SQLITE_CHECKPOINT_PASSIVE = 0;
static const int SQLITE_CHECKPOINT_FULL = 1;
static const int SQLITE_CHECKPOINT_RESTART = 2;
static const int SQLITE_VTAB_CONSTRAINT_SUPPORT = 1;
static const int SQLITE_ROLLBACK = 1;
static const int SQLITE_FAIL = 3;
static const int SQLITE_REPLACE = 5;
extern const char sqlite3_version[];
const char *sqlite3_libversion(void);
const char *sqlite3_sourceid(void);
int sqlite3_libversion_number(void);
int sqlite3_compileoption_used(const char *zOptName);
const char *sqlite3_compileoption_get(int N);
int sqlite3_threadsafe(void);
int sqlite3_close(sqlite3 *);
int sqlite3_exec(
sqlite3*,
const char *sql,
int (*callback)(void*,int,char**,char**),
void *,
char **errmsg
);
struct sqlite3_file {
const struct sqlite3_io_methods *pMethods;
};
struct sqlite3_io_methods {
int iVersion;
int (*xClose)(sqlite3_file*);
int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);
int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);
int (*xTruncate)(sqlite3_file*, sqlite3_int64 size);
int (*xSync)(sqlite3_file*, int flags);
int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
int (*xLock)(sqlite3_file*, int);
int (*xUnlock)(sqlite3_file*, int);
int (*xCheckReservedLock)(sqlite3_file*, int *pResOut);
int (*xFileControl)(sqlite3_file*, int op, void *pArg);
int (*xSectorSize)(sqlite3_file*);
int (*xDeviceCharacteristics)(sqlite3_file*);
int (*xShmMap)(sqlite3_file*, int iPg, int pgsz, int, void volatile**);
int (*xShmLock)(sqlite3_file*, int offset, int n, int flags);
void (*xShmBarrier)(sqlite3_file*);
int (*xShmUnmap)(sqlite3_file*, int deleteFlag);
};
struct sqlite3_vfs {
int iVersion;
int szOsFile;
int mxPathname;
sqlite3_vfs *pNext;
const char *zName;
void *pAppData;
int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*,
int flags, int *pOutFlags);
int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir);
int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);
int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
void *(*xDlOpen)(sqlite3_vfs*, const char *zFilename);
void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg);
void (*(*xDlSym)(sqlite3_vfs*,void*, const char *zSymbol))(void);
void (*xDlClose)(sqlite3_vfs*, void*);
int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
int (*xSleep)(sqlite3_vfs*, int microseconds);
int (*xCurrentTime)(sqlite3_vfs*, double*);
int (*xGetLastError)(sqlite3_vfs*, int, char *);
int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*);
int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr);
sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName);
const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName);
};
int sqlite3_initialize(void);
int sqlite3_shutdown(void);
int sqlite3_os_init(void);
int sqlite3_os_end(void);
int sqlite3_config(int, ...);
int sqlite3_db_config(sqlite3*, int op, ...);
struct sqlite3_mem_methods {
void *(*xMalloc)(int);
void (*xFree)(void*);
void *(*xRealloc)(void*,int);
int (*xSize)(void*);
int (*xRoundup)(int);
int (*xInit)(void*);
void (*xShutdown)(void*);
void *pAppData;
};
int sqlite3_extended_result_codes(sqlite3*, int onoff);
sqlite3_int64 sqlite3_last_insert_rowid(sqlite3*);
int sqlite3_changes(sqlite3*);
int sqlite3_total_changes(sqlite3*);
void sqlite3_interrupt(sqlite3*);
int sqlite3_complete(const char *sql);
int sqlite3_complete16(const void *sql);
int sqlite3_busy_handler(sqlite3*, int(*)(void*,int), void*);
int sqlite3_busy_timeout(sqlite3*, int ms);
int sqlite3_get_table(
sqlite3 *db,
const char *zSql,
char ***pazResult,
int *pnRow,
int *pnColumn,
char **pzErrmsg
);
void sqlite3_free_table(char **result);
char *sqlite3_mprintf(const char*,...);
char *sqlite3_vmprintf(const char*, va_list);
char *sqlite3_snprintf(int,char*,const char*, ...);
char *sqlite3_vsnprintf(int,char*,const char*, va_list);
void *sqlite3_malloc(int);
void *sqlite3_realloc(void*, int);
void sqlite3_free(void*);
sqlite3_int64 sqlite3_memory_used(void);
sqlite3_int64 sqlite3_memory_highwater(int resetFlag);
void sqlite3_randomness(int N, void *P);
int sqlite3_set_authorizer(
sqlite3*,
int (*xAuth)(void*,int,const char*,const char*,const char*,const char*),
void *pUserData
);
void *sqlite3_trace(sqlite3*, void(*xTrace)(void*,const char*), void*);
void *sqlite3_profile(sqlite3*,
void(*xProfile)(void*,const char*,sqlite3_uint64), void*);
void sqlite3_progress_handler(sqlite3*, int, int(*)(void*), void*);
int sqlite3_open(
const char *filename,
sqlite3 **ppDb
);
int sqlite3_open16(
const void *filename,
sqlite3 **ppDb
);
int sqlite3_open_v2(
const char *filename,
sqlite3 **ppDb,
int flags,
const char *zVfs
);
const char *sqlite3_uri_parameter(const char *zFilename, const char *zParam);
int sqlite3_errcode(sqlite3 *db);
int sqlite3_extended_errcode(sqlite3 *db);
const char *sqlite3_errmsg(sqlite3*);
const void *sqlite3_errmsg16(sqlite3*);
int sqlite3_limit(sqlite3*, int id, int newVal);
int sqlite3_prepare(
sqlite3 *db,
const char *zSql,
int nByte,
sqlite3_stmt **ppStmt,
const char **pzTail
);
int sqlite3_prepare_v2(
sqlite3 *db,
const char *zSql,
int nByte,
sqlite3_stmt **ppStmt,
const char **pzTail
);
int sqlite3_prepare16(
sqlite3 *db,
const void *zSql,
int nByte,
sqlite3_stmt **ppStmt,
const void **pzTail
);
int sqlite3_prepare16_v2(
sqlite3 *db,
const void *zSql,
int nByte,
sqlite3_stmt **ppStmt,
const void **pzTail
);
const char *sqlite3_sql(sqlite3_stmt *pStmt);
int sqlite3_stmt_readonly(sqlite3_stmt *pStmt);
int sqlite3_bind_blob(sqlite3_stmt*, int, const void*, int n, void(*)(void*));
int sqlite3_bind_double(sqlite3_stmt*, int, double);
int sqlite3_bind_int(sqlite3_stmt*, int, int);
int sqlite3_bind_int64(sqlite3_stmt*, int, sqlite3_int64);
int sqlite3_bind_null(sqlite3_stmt*, int);
int sqlite3_bind_text(sqlite3_stmt*, int, const char*, int n, void(*)(void*));
int sqlite3_bind_text16(sqlite3_stmt*, int, const void*, int, void(*)(void*));
int sqlite3_bind_value(sqlite3_stmt*, int, const sqlite3_value*);
int sqlite3_bind_zeroblob(sqlite3_stmt*, int, int n);
int sqlite3_bind_parameter_count(sqlite3_stmt*);
const char *sqlite3_bind_parameter_name(sqlite3_stmt*, int);
int sqlite3_bind_parameter_index(sqlite3_stmt*, const char *zName);
int sqlite3_clear_bindings(sqlite3_stmt*);
int sqlite3_column_count(sqlite3_stmt *pStmt);
const char *sqlite3_column_name(sqlite3_stmt*, int N);
const void *sqlite3_column_name16(sqlite3_stmt*, int N);
const char *sqlite3_column_database_name(sqlite3_stmt*,int);
const void *sqlite3_column_database_name16(sqlite3_stmt*,int);
const char *sqlite3_column_table_name(sqlite3_stmt*,int);
const void *sqlite3_column_table_name16(sqlite3_stmt*,int);
const char *sqlite3_column_origin_name(sqlite3_stmt*,int);
const void *sqlite3_column_origin_name16(sqlite3_stmt*,int);
const char *sqlite3_column_decltype(sqlite3_stmt*,int);
const void *sqlite3_column_decltype16(sqlite3_stmt*,int);
int sqlite3_step(sqlite3_stmt*);
int sqlite3_data_count(sqlite3_stmt *pStmt);
const void *sqlite3_column_blob(sqlite3_stmt*, int iCol);
int sqlite3_column_bytes(sqlite3_stmt*, int iCol);
int sqlite3_column_bytes16(sqlite3_stmt*, int iCol);
double sqlite3_column_double(sqlite3_stmt*, int iCol);
int sqlite3_column_int(sqlite3_stmt*, int iCol);
sqlite3_int64 sqlite3_column_int64(sqlite3_stmt*, int iCol);
const unsigned char *sqlite3_column_text(sqlite3_stmt*, int iCol);
const void *sqlite3_column_text16(sqlite3_stmt*, int iCol);
int sqlite3_column_type(sqlite3_stmt*, int iCol);
sqlite3_value *sqlite3_column_value(sqlite3_stmt*, int iCol);
int sqlite3_finalize(sqlite3_stmt *pStmt);
int sqlite3_reset(sqlite3_stmt *pStmt);
int sqlite3_create_function(
sqlite3 *db,
const char *zFunctionName,
int nArg,
int eTextRep,
void *pApp,
void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
void (*xStep)(sqlite3_context*,int,sqlite3_value**),
void (*xFinal)(sqlite3_context*)
);
int sqlite3_create_function16(
sqlite3 *db,
const void *zFunctionName,
int nArg,
int eTextRep,
void *pApp,
void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
void (*xStep)(sqlite3_context*,int,sqlite3_value**),
void (*xFinal)(sqlite3_context*)
);
int sqlite3_create_function_v2(
sqlite3 *db,
const char *zFunctionName,
int nArg,
int eTextRep,
void *pApp,
void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
void (*xStep)(sqlite3_context*,int,sqlite3_value**),
void (*xFinal)(sqlite3_context*),
void(*xDestroy)(void*)
);
int sqlite3_aggregate_count(sqlite3_context*);
int sqlite3_expired(sqlite3_stmt*);
int sqlite3_transfer_bindings(sqlite3_stmt*, sqlite3_stmt*);
int sqlite3_global_recover(void);
void sqlite3_thread_cleanup(void);
int sqlite3_memory_alarm(void(*)(void*,sqlite3_int64,int),void*,sqlite3_int64);
const void *sqlite3_value_blob(sqlite3_value*);
int sqlite3_value_bytes(sqlite3_value*);
int sqlite3_value_bytes16(sqlite3_value*);
double sqlite3_value_double(sqlite3_value*);
int sqlite3_value_int(sqlite3_value*);
sqlite3_int64 sqlite3_value_int64(sqlite3_value*);
const unsigned char *sqlite3_value_text(sqlite3_value*);
const void *sqlite3_value_text16(sqlite3_value*);
const void *sqlite3_value_text16le(sqlite3_value*);
const void *sqlite3_value_text16be(sqlite3_value*);
int sqlite3_value_type(sqlite3_value*);
int sqlite3_value_numeric_type(sqlite3_value*);
void *sqlite3_aggregate_context(sqlite3_context*, int nBytes);
void *sqlite3_user_data(sqlite3_context*);
sqlite3 *sqlite3_context_db_handle(sqlite3_context*);
void *sqlite3_get_auxdata(sqlite3_context*, int N);
void sqlite3_set_auxdata(sqlite3_context*, int N, void*, void (*)(void*));
void sqlite3_result_blob(sqlite3_context*, const void*, int, void(*)(void*));
void sqlite3_result_double(sqlite3_context*, double);
void sqlite3_result_error(sqlite3_context*, const char*, int);
void sqlite3_result_error16(sqlite3_context*, const void*, int);
void sqlite3_result_error_toobig(sqlite3_context*);
void sqlite3_result_error_nomem(sqlite3_context*);
void sqlite3_result_error_code(sqlite3_context*, int);
void sqlite3_result_int(sqlite3_context*, int);
void sqlite3_result_int64(sqlite3_context*, sqlite3_int64);
void sqlite3_result_null(sqlite3_context*);
void sqlite3_result_text(sqlite3_context*, const char*, int, void(*)(void*));
void sqlite3_result_text16(sqlite3_context*, const void*, int, void(*)(void*));
void sqlite3_result_text16le(sqlite3_context*, const void*, int,void(*)(void*));
void sqlite3_result_text16be(sqlite3_context*, const void*, int,void(*)(void*));
void sqlite3_result_value(sqlite3_context*, sqlite3_value*);
void sqlite3_result_zeroblob(sqlite3_context*, int n);
int sqlite3_create_collation(
sqlite3*,
const char *zName,
int eTextRep,
void *pArg,
int(*xCompare)(void*,int,const void*,int,const void*)
);
int sqlite3_create_collation_v2(
sqlite3*,
const char *zName,
int eTextRep,
void *pArg,
int(*xCompare)(void*,int,const void*,int,const void*),
void(*xDestroy)(void*)
);
int sqlite3_create_collation16(
sqlite3*,
const void *zName,
int eTextRep,
void *pArg,
int(*xCompare)(void*,int,const void*,int,const void*)
);
int sqlite3_collation_needed(
sqlite3*,
void*,
void(*)(void*,sqlite3*,int eTextRep,const char*)
);
int sqlite3_collation_needed16(
sqlite3*,
void*,
void(*)(void*,sqlite3*,int eTextRep,const void*)
);
int sqlite3_sleep(int);
extern char *sqlite3_temp_directory;
int sqlite3_get_autocommit(sqlite3*);
sqlite3 *sqlite3_db_handle(sqlite3_stmt*);
sqlite3_stmt *sqlite3_next_stmt(sqlite3 *pDb, sqlite3_stmt *pStmt);
void *sqlite3_commit_hook(sqlite3*, int(*)(void*), void*);
void *sqlite3_rollback_hook(sqlite3*, void(*)(void *), void*);
void *sqlite3_update_hook(
sqlite3*,
void(*)(void *,int ,char const *,char const *,sqlite3_int64),
void*
);
int sqlite3_enable_shared_cache(int);
int sqlite3_release_memory(int);
sqlite3_int64 sqlite3_soft_heap_limit64(sqlite3_int64 N);
void sqlite3_soft_heap_limit(int N);
int sqlite3_table_column_metadata(
sqlite3 *db,
const char *zDbName,
const char *zTableName,
const char *zColumnName,
char const **pzDataType,
char const **pzCollSeq,
int *pNotNull,
int *pPrimaryKey,
int *pAutoinc
);
int sqlite3_load_extension(
sqlite3 *db,
const char *zFile,
const char *zProc,
char **pzErrMsg
);
int sqlite3_enable_load_extension(sqlite3 *db, int onoff);
int sqlite3_auto_extension(void (*xEntryPoint)(void));
void sqlite3_reset_auto_extension(void);
struct sqlite3_module {
int iVersion;
int (*xCreate)(sqlite3*, void *pAux,
int argc, const char *const*argv,
sqlite3_vtab **ppVTab, char**);
int (*xConnect)(sqlite3*, void *pAux,
int argc, const char *const*argv,
sqlite3_vtab **ppVTab, char**);
int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
int (*xDisconnect)(sqlite3_vtab *pVTab);
int (*xDestroy)(sqlite3_vtab *pVTab);
int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
int (*xClose)(sqlite3_vtab_cursor*);
int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
int argc, sqlite3_value **argv);
int (*xNext)(sqlite3_vtab_cursor*);
int (*xEof)(sqlite3_vtab_cursor*);
int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
int (*xUpdate)(sqlite3_vtab *, int, sqlite3_value **, sqlite3_int64 *);
int (*xBegin)(sqlite3_vtab *pVTab);
int (*xSync)(sqlite3_vtab *pVTab);
int (*xCommit)(sqlite3_vtab *pVTab);
int (*xRollback)(sqlite3_vtab *pVTab);
int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName,
void (**pxFunc)(sqlite3_context*,int,sqlite3_value**),
void **ppArg);
int (*xRename)(sqlite3_vtab *pVtab, const char *zNew);
int (*xSavepoint)(sqlite3_vtab *pVTab, int);
int (*xRelease)(sqlite3_vtab *pVTab, int);
int (*xRollbackTo)(sqlite3_vtab *pVTab, int);
};
struct sqlite3_index_info {
int nConstraint;
struct sqlite3_index_constraint {
int iColumn;
unsigned char op;
unsigned char usable;
int iTermOffset;
} *aConstraint;
int nOrderBy;
struct sqlite3_index_orderby {
int iColumn;
unsigned char desc;
} *aOrderBy;
struct sqlite3_index_constraint_usage {
int argvIndex;
unsigned char omit;
} *aConstraintUsage;
int idxNum;
char *idxStr;
int needToFreeIdxStr;
int orderByConsumed;
double estimatedCost;
};
int sqlite3_create_module(
sqlite3 *db,
const char *zName,
const sqlite3_module *p,
void *pClientData
);
int sqlite3_create_module_v2(
sqlite3 *db,
const char *zName,
const sqlite3_module *p,
void *pClientData,
void(*xDestroy)(void*)
);
struct sqlite3_vtab {
const sqlite3_module *pModule;
int nRef;
char *zErrMsg;
};
struct sqlite3_vtab_cursor {
sqlite3_vtab *pVtab;
};
int sqlite3_declare_vtab(sqlite3*, const char *zSQL);
int sqlite3_overload_function(sqlite3*, const char *zFuncName, int nArg);
int sqlite3_blob_open(
sqlite3*,
const char *zDb,
const char *zTable,
const char *zColumn,
sqlite3_int64 iRow,
int flags,
sqlite3_blob **ppBlob
);
int sqlite3_blob_reopen(sqlite3_blob *, sqlite3_int64);
int sqlite3_blob_close(sqlite3_blob *);
int sqlite3_blob_bytes(sqlite3_blob *);
int sqlite3_blob_read(sqlite3_blob *, void *Z, int N, int iOffset);
int sqlite3_blob_write(sqlite3_blob *, const void *z, int n, int iOffset);
sqlite3_vfs *sqlite3_vfs_find(const char *zVfsName);
int sqlite3_vfs_register(sqlite3_vfs*, int makeDflt);
int sqlite3_vfs_unregister(sqlite3_vfs*);
sqlite3_mutex *sqlite3_mutex_alloc(int);
void sqlite3_mutex_free(sqlite3_mutex*);
void sqlite3_mutex_enter(sqlite3_mutex*);
int sqlite3_mutex_try(sqlite3_mutex*);
void sqlite3_mutex_leave(sqlite3_mutex*);
struct sqlite3_mutex_methods {
int (*xMutexInit)(void);
int (*xMutexEnd)(void);
sqlite3_mutex *(*xMutexAlloc)(int);
void (*xMutexFree)(sqlite3_mutex *);
void (*xMutexEnter)(sqlite3_mutex *);
int (*xMutexTry)(sqlite3_mutex *);
void (*xMutexLeave)(sqlite3_mutex *);
int (*xMutexHeld)(sqlite3_mutex *);
int (*xMutexNotheld)(sqlite3_mutex *);
};
int sqlite3_mutex_held(sqlite3_mutex*);
int sqlite3_mutex_notheld(sqlite3_mutex*);
sqlite3_mutex *sqlite3_db_mutex(sqlite3*);
int sqlite3_file_control(sqlite3*, const char *zDbName, int op, void*);
int sqlite3_test_control(int op, ...);
int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag);
int sqlite3_db_status(sqlite3*, int op, int *pCur, int *pHiwtr, int resetFlg);
int sqlite3_stmt_status(sqlite3_stmt*, int op,int resetFlg);
struct sqlite3_pcache_methods {
void *pArg;
int (*xInit)(void*);
void (*xShutdown)(void*);
sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
void (*xCachesize)(sqlite3_pcache*, int nCachesize);
int (*xPagecount)(sqlite3_pcache*);
void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
void (*xUnpin)(sqlite3_pcache*, void*, int discard);
void (*xRekey)(sqlite3_pcache*, void*, unsigned oldKey, unsigned newKey);
void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);
void (*xDestroy)(sqlite3_pcache*);
};
sqlite3_backup *sqlite3_backup_init(
sqlite3 *pDest,
const char *zDestName,
sqlite3 *pSource,
const char *zSourceName
);
int sqlite3_backup_step(sqlite3_backup *p, int nPage);
int sqlite3_backup_finish(sqlite3_backup *p);
int sqlite3_backup_remaining(sqlite3_backup *p);
int sqlite3_backup_pagecount(sqlite3_backup *p);
int sqlite3_unlock_notify(
sqlite3 *pBlocked,
void (*xNotify)(void **apArg, int nArg),
void *pNotifyArg
);
int sqlite3_strnicmp(const char *, const char *, int);
void sqlite3_log(int iErrCode, const char *zFormat, ...);
void *sqlite3_wal_hook(
sqlite3*,
int(*)(void *,sqlite3*,const char*,int),
void*
);
int sqlite3_wal_autocheckpoint(sqlite3 *db, int N);
int sqlite3_wal_checkpoint(sqlite3 *db, const char *zDb);
int sqlite3_wal_checkpoint_v2(
sqlite3 *db,
const char *zDb,
int eMode,
int *pnLog,
int *pnCkpt
);
int sqlite3_vtab_config(sqlite3*, int op, ...);
int sqlite3_vtab_on_conflict(sqlite3 *);
int sqlite3_rtree_geometry_callback(
sqlite3 *db,
const char *zGeom,
int (*xGeom)(sqlite3_rtree_geometry *, int nCoord, double *aCoord, int *pRes),
void *pContext
);
struct sqlite3_rtree_geometry {
void *pContext;
int nParam;
double *aParam;
void *pUser;
void (*xDelUser)(void *);
};
]]
local sqlite3 = ffi.load("sqlite3")
local new_db_ptr = ffi.typeof("sqlite3*[1]")
local new_stmt_ptr = ffi.typeof("sqlite3_stmt*[1]")
local new_exec_ptr = ffi.typeof("int (*)(void*,int,char**,char**)")
local new_blob_ptr = ffi.typeof("sqlite3_blob*[1]")
local new_bytearr = ffi.typeof("uint8_t[?]")
local sqlite3_transient = ffi.cast("void*",-1)
local value_handlers = {
[sqlite3.SQLITE_INTEGER] = function(stmt, n) return sqlite3.sqlite3_column_int(stmt, n) end,
[sqlite3.SQLITE_FLOAT] = function(stmt, n) return sqlite3.sqlite3_column_double(stmt, n) end,
[sqlite3.SQLITE_TEXT] = function(stmt, n)
local value = ffi.string(sqlite3.sqlite3_column_text(stmt,n), sqlite3.sqlite3_column_bytes(stmt,n))
local length = #value
if length ~= 0 and string.sub(value, -1) == "\0" then
value = string.sub(value, 1, -2)
end
return value
end,
[sqlite3.SQLITE_BLOB] = function(stmt, n) return sqlite3.sqlite3_column_blob(stmt,n), sqlite3.sqlite3_column_bytes(stmt,n) end,
[sqlite3.SQLITE_NULL] = function() return nil end
}
local lsqlite3 = {}
local sqlite_db = {}
sqlite_db.__index = sqlite_db
function sqlite_db:__call(...)
return self:exec(...)
end
local sqlite_stmt = {}
function sqlite_stmt:__index(k)
if type(k) == "number" then
return sqlite_stmt.get_value(self, k)
else
return sqlite_stmt[k]
end
end
function sqlite_stmt:__newindex(...)
sqlite_stmt.bind(self,...)
end
function sqlite_stmt:__call()
return self:step()
end
local sqlite_blob = {}
sqlite_blob.__index = sqlite_blob