summaryrefslogtreecommitdiffstats
path: root/www/doc_pagelink_crossref.html
blob: cb003a01c65b84f6129e55bd22abf16d0cd9d23b (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
<!DOCTYPE html>
<html><head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<link href="sqlite.css" rel="stylesheet">
<title>Pagelink Crossreference</title>
<!-- path= -->
</head>
<body>
<div class=nosearch>
<a href="index.html">
<img class="logo" src="images/sqlite370_banner.gif" alt="SQLite" border="0">
</a>
<div><!-- IE hack to prevent disappearing logo --></div>
<div class="tagline desktoponly">
Small. Fast. Reliable.<br>Choose any three.
</div>
<div class="menu mainmenu">
<ul>
<li><a href="index.html">Home</a>
<li class='mobileonly'><a href="javascript:void(0)" onclick='toggle_div("submenu")'>Menu</a>
<li class='wideonly'><a href='about.html'>About</a>
<li class='desktoponly'><a href="docs.html">Documentation</a>
<li class='desktoponly'><a href="download.html">Download</a>
<li class='wideonly'><a href='copyright.html'>License</a>
<li class='desktoponly'><a href="support.html">Support</a>
<li class='desktoponly'><a href="prosupport.html">Purchase</a>
<li class='search' id='search_menubutton'>
<a href="javascript:void(0)" onclick='toggle_search()'>Search</a>
</ul>
</div>
<div class="menu submenu" id="submenu">
<ul>
<li><a href='about.html'>About</a>
<li><a href='docs.html'>Documentation</a>
<li><a href='download.html'>Download</a>
<li><a href='support.html'>Support</a>
<li><a href='prosupport.html'>Purchase</a>
</ul>
</div>
<div class="searchmenu" id="searchmenu">
<form method="GET" action="search">
<select name="s" id="searchtype">
<option value="d">Search Documentation</option>
<option value="c">Search Changelog</option>
</select>
<input type="text" name="q" id="searchbox" value="">
<input type="submit" value="Go">
</form>
</div>
</div>
<script>
function toggle_div(nm) {
var w = document.getElementById(nm);
if( w.style.display=="block" ){
w.style.display = "none";
}else{
w.style.display = "block";
}
}
function toggle_search() {
var w = document.getElementById("searchmenu");
if( w.style.display=="block" ){
w.style.display = "none";
} else {
w.style.display = "block";
setTimeout(function(){
document.getElementById("searchbox").focus()
}, 30);
}
}
function div_off(nm){document.getElementById(nm).style.display="none";}
window.onbeforeunload = function(e){div_off("submenu");}
/* Disable the Search feature if we are not operating from CGI, since */
/* Search is accomplished using CGI and will not work without it. */
if( !location.origin || !location.origin.match || !location.origin.match(/http/) ){
document.getElementById("search_menubutton").style.display = "none";
}
/* Used by the Hide/Show button beside syntax diagrams, to toggle the */
function hideorshow(btn,obj){
var x = document.getElementById(obj);
var b = document.getElementById(btn);
if( x.style.display!='none' ){
x.style.display = 'none';
b.innerHTML='show';
}else{
x.style.display = '';
b.innerHTML='hide';
}
return false;
}
var antiRobot = 0;
function antiRobotGo(){
if( antiRobot!=3 ) return;
antiRobot = 7;
var j = document.getElementById("mtimelink");
if(j && j.hasAttribute("data-href")) j.href=j.getAttribute("data-href");
}
function antiRobotDefense(){
document.body.onmousedown=function(){
antiRobot |= 2;
antiRobotGo();
document.body.onmousedown=null;
}
document.body.onmousemove=function(){
antiRobot |= 2;
antiRobotGo();
document.body.onmousemove=null;
}
setTimeout(function(){
antiRobot |= 1;
antiRobotGo();
}, 100)
antiRobotGo();
}
antiRobotDefense();
</script>
<p>Key: Target_Page &rarr; pages that have hyperlinks to the target page.</p><p>Pages matching (news|changes|releaselog|[0-9]to[0-9]|&#94;doc_[&#94;_]+_crossref) are skipped.</p><ul><li><a href="about.html">about.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="index.html">index.html</a> <a href="qmplan.html">qmplan.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="aff_short.html">aff_short.html</a> &rarr; 
<a href="appfileformat.html">appfileformat.html</a> <a href="doclist.html">doclist.html</a> <a href="famous.html">famous.html</a> <a href="index.html">index.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> <a href="whentouse.html">whentouse.html</a> </li>
<li><a href="affcase1.html">affcase1.html</a> &rarr; 
<a href="appfileformat.html">appfileformat.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="amalgamation.html">amalgamation.html</a> &rarr; 
<a href="appfileformat.html">appfileformat.html</a> <a href="c3ref/libversion.html">c3ref/libversion.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cksumvfs.html">cksumvfs.html</a> <a href="cli.html">cli.html</a> <a href="compile.html">compile.html</a> <a href="cpu.html">cpu.html</a> <a href="custombuild.html">custombuild.html</a> <a href="cves.html">cves.html</a> <a href="dbpage.html">dbpage.html</a> <a href="doclist.html">doclist.html</a> <a href="download.html">download.html</a> <a href="faq.html">faq.html</a> <a href="fasterthanfs.html">fasterthanfs.html</a> <a href="features.html">features.html</a> <a href="floatingpoint.html">floatingpoint.html</a> <a href="fts5.html">fts5.html</a> <a href="geopoly.html">geopoly.html</a> <a href="getthecode.html">getthecode.html</a> <a href="howtocompile.html">howtocompile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_mathfunc.html">lang_mathfunc.html</a> <a href="lemon.html">lemon.html</a> <a href="malloc.html">malloc.html</a> <a href="privatebranch.html">privatebranch.html</a> <a href="prosupport.html">prosupport.html</a> <a href="qmplan.html">qmplan.html</a> <a href="rbu.html">rbu.html</a> <a href="rtree.html">rtree.html</a> <a href="selfcontained.html">selfcontained.html</a> <a href="sessionintro.html">sessionintro.html</a> <a href="sitemap.html">sitemap.html</a> <a href="spellfix1.html">spellfix1.html</a> <a href="stmt.html">stmt.html</a> </li>
<li><a href="appfileformat.html">appfileformat.html</a> &rarr; 
<a href="about.html">about.html</a> <a href="aff_short.html">aff_short.html</a> <a href="affcase1.html">affcase1.html</a> <a href="cintro.html">cintro.html</a> <a href="doclist.html">doclist.html</a> <a href="features.html">features.html</a> <a href="fileformat2.html">fileformat2.html</a> <a href="flextypegood.html">flextypegood.html</a> <a href="index.html">index.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="onefile.html">onefile.html</a> <a href="pragma.html">pragma.html</a> <a href="sessionintro.html">sessionintro.html</a> <a href="sitemap.html">sitemap.html</a> <a href="undoredo.html">undoredo.html</a> <a href="wal.html">wal.html</a> <a href="whentouse.html">whentouse.html</a> </li>
<li><a href="appfunc.html">appfunc.html</a> &rarr; 
<a href="c3ref/c_deterministic.html">c3ref/c_deterministic.html</a> <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> <a href="c3ref/context.html">c3ref/context.html</a> <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> <a href="c3ref/result_subtype.html">c3ref/result_subtype.html</a> <a href="c3ref/stmt_readonly.html">c3ref/stmt_readonly.html</a> <a href="c3ref/value.html">c3ref/value.html</a> <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> <a href="c3ref/value_subtype.html">c3ref/value_subtype.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cli.html">cli.html</a> <a href="compile.html">compile.html</a> <a href="deterministic.html">deterministic.html</a> <a href="doclist.html">doclist.html</a> <a href="expridx.html">expridx.html</a> <a href="fts5.html">fts5.html</a> <a href="fullsql.html">fullsql.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="loadext.html">loadext.html</a> <a href="optoverview.html">optoverview.html</a> <a href="rescode.html">rescode.html</a> <a href="security.html">security.html</a> <a href="sitemap.html">sitemap.html</a> <a href="swarmvtab.html">swarmvtab.html</a> </li>
<li><a href="arch.html">arch.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="lts.html">lts.html</a> <a href="sitemap.html">sitemap.html</a> <a href="vdbe.html">vdbe.html</a> </li>
<li><a href="assert.html">assert.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="howtocorrupt.html">howtocorrupt.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> <a href="testing.html">testing.html</a> </li>
<li><a href="asyncvfs.html">asyncvfs.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="atomiccommit.html">atomiccommit.html</a> &rarr; 
<a href="affcase1.html">affcase1.html</a> <a href="appfileformat.html">appfileformat.html</a> <a href="doclist.html">doclist.html</a> <a href="faq.html">faq.html</a> <a href="howitworks.html">howitworks.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lockingv3.html">lockingv3.html</a> <a href="pragma.html">pragma.html</a> <a href="sitemap.html">sitemap.html</a> <a href="tempfiles.html">tempfiles.html</a> <a href="testing.html">testing.html</a> <a href="transactional.html">transactional.html</a> <a href="wal.html">wal.html</a> </li>
<li><a href="autoinc.html">autoinc.html</a> &rarr; 
<a href="c3ref/table_column_metadata.html">c3ref/table_column_metadata.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="faq.html">faq.html</a> <a href="fileformat2.html">fileformat2.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="quirks.html">quirks.html</a> <a href="rescode.html">rescode.html</a> <a href="sitemap.html">sitemap.html</a> <a href="stricttables.html">stricttables.html</a> <a href="withoutrowid.html">withoutrowid.html</a> </li>
<li><a href="backup.html">backup.html</a> &rarr; 
<a href="aff_short.html">aff_short.html</a> <a href="c3ref/backup.html">c3ref/backup.html</a> <a href="c3ref/backup_finish.html">c3ref/backup_finish.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="dbhash.html">dbhash.html</a> <a href="doclist.html">doclist.html</a> <a href="howtocorrupt.html">howtocorrupt.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_vacuum.html">lang_vacuum.html</a> <a href="sitemap.html">sitemap.html</a> <a href="wal.html">wal.html</a> <a href="whentouse.html">whentouse.html</a> </li>
<li><a href="bindptr.html">bindptr.html</a> &rarr; 
<a href="c3ref/bind_blob.html">c3ref/bind_blob.html</a> <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> <a href="c3ref/value_dup.html">c3ref/value_dup.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="books.html">books.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="bytecodevtab.html">bytecodevtab.html</a> &rarr; 
<a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> <a href="vtablist.html">vtablist.html</a> </li>
<li><a href="c3ref/aggregate_context.html">c3ref/aggregate_context.html</a> &rarr; 
<a href="appfunc.html">appfunc.html</a> <a href="c3ref/context.html">c3ref/context.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cintro.html">cintro.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="windowfunctions.html">windowfunctions.html</a> </li>
<li><a href="c3ref/aggregate_count.html">c3ref/aggregate_count.html</a> &rarr; 
<a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/api_routines.html">c3ref/api_routines.html</a> &rarr; 
<a href="c3ref/objlist.html">c3ref/objlist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/auto_extension.html">c3ref/auto_extension.html</a> &rarr; 
<a href="c3ref/cancel_auto_extension.html">c3ref/cancel_auto_extension.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/reset_auto_extension.html">c3ref/reset_auto_extension.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cli.html">cli.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="loadext.html">loadext.html</a> </li>
<li><a href="c3ref/autovacuum_pages.html">c3ref/autovacuum_pages.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/backup.html">c3ref/backup.html</a> &rarr; 
<a href="backup.html">backup.html</a> <a href="c3ref/backup_finish.html">c3ref/backup_finish.html</a> <a href="c3ref/close.html">c3ref/close.html</a> <a href="c3ref/objlist.html">c3ref/objlist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/backup_finish.html">c3ref/backup_finish.html</a> &rarr; 
<a href="backup.html">backup.html</a> <a href="c3ref/backup.html">c3ref/backup.html</a> <a href="c3ref/close.html">c3ref/close.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="docs.html">docs.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="rescode.html">rescode.html</a> </li>
<li><a href="c3ref/bind_blob.html">c3ref/bind_blob.html</a> &rarr; 
<a href="arch.html">arch.html</a> <a href="bindptr.html">bindptr.html</a> <a href="bytecodevtab.html">bytecodevtab.html</a> <a href="c3ref/bind_parameter_count.html">c3ref/bind_parameter_count.html</a> <a href="c3ref/bind_parameter_index.html">c3ref/bind_parameter_index.html</a> <a href="c3ref/bind_parameter_name.html">c3ref/bind_parameter_name.html</a> <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> <a href="c3ref/clear_bindings.html">c3ref/clear_bindings.html</a> <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/prepare.html">c3ref/prepare.html</a> <a href="c3ref/reset.html">c3ref/reset.html</a> <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> <a href="c3ref/stmt.html">c3ref/stmt.html</a> <a href="c3ref/value.html">c3ref/value.html</a> <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> <a href="c3ref/vtab_rhs_value.html">c3ref/vtab_rhs_value.html</a> <a href="capi3.html">capi3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="carray.html">carray.html</a> <a href="cintro.html">cintro.html</a> <a href="cli.html">cli.html</a> <a href="compile.html">compile.html</a> <a href="fts3.html">fts3.html</a> <a href="fts5.html">fts5.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="limits.html">limits.html</a> <a href="optoverview.html">optoverview.html</a> <a href="rescode.html">rescode.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="c3ref/bind_parameter_count.html">c3ref/bind_parameter_count.html</a> &rarr; 
<a href="c3ref/bind_blob.html">c3ref/bind_blob.html</a> <a href="c3ref/bind_parameter_index.html">c3ref/bind_parameter_index.html</a> <a href="c3ref/bind_parameter_name.html">c3ref/bind_parameter_name.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/stmt.html">c3ref/stmt.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/bind_parameter_index.html">c3ref/bind_parameter_index.html</a> &rarr; 
<a href="c3ref/bind_blob.html">c3ref/bind_blob.html</a> <a href="c3ref/bind_parameter_count.html">c3ref/bind_parameter_count.html</a> <a href="c3ref/bind_parameter_name.html">c3ref/bind_parameter_name.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/stmt.html">c3ref/stmt.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_expr.html">lang_expr.html</a> </li>
<li><a href="c3ref/bind_parameter_name.html">c3ref/bind_parameter_name.html</a> &rarr; 
<a href="c3ref/bind_blob.html">c3ref/bind_blob.html</a> <a href="c3ref/bind_parameter_count.html">c3ref/bind_parameter_count.html</a> <a href="c3ref/bind_parameter_index.html">c3ref/bind_parameter_index.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/stmt.html">c3ref/stmt.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_expr.html">lang_expr.html</a> </li>
<li><a href="c3ref/blob.html">c3ref/blob.html</a> &rarr; 
<a href="c3ref/blob_bytes.html">c3ref/blob_bytes.html</a> <a href="c3ref/blob_close.html">c3ref/blob_close.html</a> <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> <a href="c3ref/blob_read.html">c3ref/blob_read.html</a> <a href="c3ref/blob_reopen.html">c3ref/blob_reopen.html</a> <a href="c3ref/blob_write.html">c3ref/blob_write.html</a> <a href="c3ref/close.html">c3ref/close.html</a> <a href="c3ref/objlist.html">c3ref/objlist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_transaction.html">lang_transaction.html</a> <a href="malloc.html">malloc.html</a> <a href="withoutrowid.html">withoutrowid.html</a> </li>
<li><a href="c3ref/blob_bytes.html">c3ref/blob_bytes.html</a> &rarr; 
<a href="c3ref/blob.html">c3ref/blob.html</a> <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> <a href="c3ref/blob_read.html">c3ref/blob_read.html</a> <a href="c3ref/blob_reopen.html">c3ref/blob_reopen.html</a> <a href="c3ref/blob_write.html">c3ref/blob_write.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/blob_close.html">c3ref/blob_close.html</a> &rarr; 
<a href="c3ref/blob.html">c3ref/blob.html</a> <a href="c3ref/blob_bytes.html">c3ref/blob_bytes.html</a> <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> <a href="c3ref/blob_read.html">c3ref/blob_read.html</a> <a href="c3ref/blob_write.html">c3ref/blob_write.html</a> <a href="c3ref/close.html">c3ref/close.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_transaction.html">lang_transaction.html</a> </li>
<li><a href="c3ref/blob_open.html">c3ref/blob_open.html</a> &rarr; 
<a href="c3ref/bind_blob.html">c3ref/bind_blob.html</a> <a href="c3ref/blob.html">c3ref/blob.html</a> <a href="c3ref/blob_bytes.html">c3ref/blob_bytes.html</a> <a href="c3ref/blob_close.html">c3ref/blob_close.html</a> <a href="c3ref/blob_read.html">c3ref/blob_read.html</a> <a href="c3ref/blob_reopen.html">c3ref/blob_reopen.html</a> <a href="c3ref/blob_write.html">c3ref/blob_write.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_corefunc.html">lang_corefunc.html</a> <a href="tclsqlite.html">tclsqlite.html</a> <a href="unionvtab.html">unionvtab.html</a> <a href="withoutrowid.html">withoutrowid.html</a> </li>
<li><a href="c3ref/blob_read.html">c3ref/blob_read.html</a> &rarr; 
<a href="c3ref/blob.html">c3ref/blob.html</a> <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> <a href="c3ref/blob_reopen.html">c3ref/blob_reopen.html</a> <a href="c3ref/blob_write.html">c3ref/blob_write.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="fasterthanfs.html">fasterthanfs.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/blob_reopen.html">c3ref/blob_reopen.html</a> &rarr; 
<a href="c3ref/blob.html">c3ref/blob.html</a> <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/blob_write.html">c3ref/blob_write.html</a> &rarr; 
<a href="c3ref/blob.html">c3ref/blob.html</a> <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> <a href="c3ref/blob_read.html">c3ref/blob_read.html</a> <a href="c3ref/blob_reopen.html">c3ref/blob_reopen.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/busy_handler.html">c3ref/busy_handler.html</a> &rarr; 
<a href="backup.html">backup.html</a> <a href="c3ref/backup_finish.html">c3ref/backup_finish.html</a> <a href="c3ref/busy_timeout.html">c3ref/busy_timeout.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="c3ref/wal_checkpoint_v2.html">c3ref/wal_checkpoint_v2.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="faq.html">faq.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="pragma.html">pragma.html</a> <a href="rescode.html">rescode.html</a> </li>
<li><a href="c3ref/busy_timeout.html">c3ref/busy_timeout.html</a> &rarr; 
<a href="backup.html">backup.html</a> <a href="c3ref/busy_handler.html">c3ref/busy_handler.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="faq.html">faq.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="pragma.html">pragma.html</a> <a href="rescode.html">rescode.html</a> </li>
<li><a href="c3ref/c_abort.html">c3ref/c_abort.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="rescode.html">rescode.html</a> </li>
<li><a href="c3ref/c_abort_rollback.html">c3ref/c_abort_rollback.html</a> &rarr; 
<a href="c3ref/c_abort.html">c3ref/c_abort.html</a> <a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="rescode.html">rescode.html</a> </li>
<li><a href="c3ref/c_access_exists.html">c3ref/c_access_exists.html</a> &rarr; 
<a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/vfs.html">c3ref/vfs.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/c_alter_table.html">c3ref/c_alter_table.html</a> &rarr; 
<a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> <a href="c3ref/update_hook.html">c3ref/update_hook.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_delete.html">lang_delete.html</a> <a href="session.html">session.html</a> </li>
<li><a href="c3ref/c_any.html">c3ref/c_any.html</a> &rarr; 
<a href="appfunc.html">appfunc.html</a> <a href="c3ref/bind_blob.html">c3ref/bind_blob.html</a> <a href="c3ref/c_deterministic.html">c3ref/c_deterministic.html</a> <a href="c3ref/collation_needed.html">c3ref/collation_needed.html</a> <a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/create_collation.html">c3ref/create_collation.html</a> <a href="c3ref/create_function.html">c3ref/create_function.html</a> <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> <a href="c3ref/value_encoding.html">c3ref/value_encoding.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/c_blob.html">c3ref/c_blob.html</a> &rarr; 
<a href="c3ref/column_blob.html">c3ref/column_blob.html</a> <a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/c_checkpoint_full.html">c3ref/c_checkpoint_full.html</a> &rarr; 
<a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/wal_checkpoint.html">c3ref/wal_checkpoint.html</a> <a href="c3ref/wal_checkpoint_v2.html">c3ref/wal_checkpoint_v2.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="pragma.html">pragma.html</a> <a href="wal.html">wal.html</a> </li>
<li><a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> &rarr; 
<a href="c3ref/c_status_malloc_count.html">c3ref/c_status_malloc_count.html</a> <a href="c3ref/config.html">c3ref/config.html</a> <a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/hard_heap_limit64.html">c3ref/hard_heap_limit64.html</a> <a href="c3ref/log.html">c3ref/log.html</a> <a href="c3ref/mem_methods.html">c3ref/mem_methods.html</a> <a href="c3ref/mutex_alloc.html">c3ref/mutex_alloc.html</a> <a href="c3ref/mutex_methods.html">c3ref/mutex_methods.html</a> <a href="c3ref/open.html">c3ref/open.html</a> <a href="c3ref/pcache_methods2.html">c3ref/pcache_methods2.html</a> <a href="c3ref/threadsafe.html">c3ref/threadsafe.html</a> <a href="c3ref/value.html">c3ref/value.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="custombuild.html">custombuild.html</a> <a href="debugging.html">debugging.html</a> <a href="errlog.html">errlog.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_vacuum.html">lang_vacuum.html</a> <a href="malloc.html">malloc.html</a> <a href="mmap.html">mmap.html</a> <a href="pragma.html">pragma.html</a> <a href="security.html">security.html</a> <a href="testing.html">testing.html</a> <a href="threadsafe.html">threadsafe.html</a> <a href="uri.html">uri.html</a> </li>
<li><a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> &rarr; 
<a href="appfunc.html">appfunc.html</a> <a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/c_deterministic.html">c3ref/c_deterministic.html</a> <a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/db_config.html">c3ref/db_config.html</a> <a href="c3ref/enable_load_extension.html">c3ref/enable_load_extension.html</a> <a href="c3ref/load_extension.html">c3ref/load_extension.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="dbpage.html">dbpage.html</a> <a href="fts3.html">fts3.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="loadext.html">loadext.html</a> <a href="malloc.html">malloc.html</a> <a href="pragma.html">pragma.html</a> <a href="queryplanner-ng.html">queryplanner-ng.html</a> <a href="quirks.html">quirks.html</a> <a href="security.html">security.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="c3ref/c_dbstatus_options.html">c3ref/c_dbstatus_options.html</a> &rarr; 
<a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> <a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/db_status.html">c3ref/db_status.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="malloc.html">malloc.html</a> <a href="memstat.html">memstat.html</a> <a href="pragma.html">pragma.html</a> </li>
<li><a href="c3ref/c_deny.html">c3ref/c_deny.html</a> &rarr; 
<a href="c3ref/c_fail.html">c3ref/c_fail.html</a> <a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> <a href="c3ref/vtab_on_conflict.html">c3ref/vtab_on_conflict.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_delete.html">lang_delete.html</a> </li>
<li><a href="c3ref/c_deserialize_freeonclose.html">c3ref/c_deserialize_freeonclose.html</a> &rarr; 
<a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/c_deterministic.html">c3ref/c_deterministic.html</a> &rarr; 
<a href="appfunc.html">appfunc.html</a> <a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> <a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/create_function.html">c3ref/create_function.html</a> <a href="c3ref/result_subtype.html">c3ref/result_subtype.html</a> <a href="c3ref/value_subtype.html">c3ref/value_subtype.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="deterministic.html">deterministic.html</a> <a href="expridx.html">expridx.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="security.html">security.html</a> </li>
<li><a href="c3ref/c_fail.html">c3ref/c_fail.html</a> &rarr; 
<a href="c3ref/c_deny.html">c3ref/c_deny.html</a> <a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/vtab_on_conflict.html">c3ref/vtab_on_conflict.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="rescode.html">rescode.html</a> </li>
<li><a href="c3ref/c_fcntl_begin_atomic_write.html">c3ref/c_fcntl_begin_atomic_write.html</a> &rarr; 
<a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/c_iocap_atomic.html">c3ref/c_iocap_atomic.html</a> <a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/file_control.html">c3ref/file_control.html</a> <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> <a href="c3ref/snapshot_recover.html">c3ref/snapshot_recover.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="pragma.html">pragma.html</a> <a href="psow.html">psow.html</a> <a href="rescode.html">rescode.html</a> <a href="wal.html">wal.html</a> <a href="walformat.html">walformat.html</a> </li>
<li><a href="c3ref/c_index_constraint_eq.html">c3ref/c_index_constraint_eq.html</a> &rarr; 
<a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/index_info.html">c3ref/index_info.html</a> <a href="c3ref/vtab_in.html">c3ref/vtab_in.html</a> <a href="c3ref/vtab_rhs_value.html">c3ref/vtab_rhs_value.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="c3ref/c_index_scan_unique.html">c3ref/c_index_scan_unique.html</a> &rarr; 
<a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/c_iocap_atomic.html">c3ref/c_iocap_atomic.html</a> &rarr; 
<a href="c3ref/c_fcntl_begin_atomic_write.html">c3ref/c_fcntl_begin_atomic_write.html</a> <a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> <a href="c3ref/open.html">c3ref/open.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="psow.html">psow.html</a> <a href="uri.html">uri.html</a> </li>
<li><a href="c3ref/c_limit_attached.html">c3ref/c_limit_attached.html</a> &rarr; 
<a href="c3ref/bind_blob.html">c3ref/bind_blob.html</a> <a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/create_function.html">c3ref/create_function.html</a> <a href="c3ref/expanded_sql.html">c3ref/expanded_sql.html</a> <a href="c3ref/limit.html">c3ref/limit.html</a> <a href="c3ref/str_new.html">c3ref/str_new.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="foreignkeys.html">foreignkeys.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_attach.html">lang_attach.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="lang_select.html">lang_select.html</a> <a href="limits.html">limits.html</a> <a href="pragma.html">pragma.html</a> <a href="rescode.html">rescode.html</a> </li>
<li><a href="c3ref/c_lock_exclusive.html">c3ref/c_lock_exclusive.html</a> &rarr; 
<a href="c3ref/c_fcntl_begin_atomic_write.html">c3ref/c_fcntl_begin_atomic_write.html</a> <a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/c_mutex_fast.html">c3ref/c_mutex_fast.html</a> &rarr; 
<a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/mem_methods.html">c3ref/mem_methods.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/c_open_autoproxy.html">c3ref/c_open_autoproxy.html</a> &rarr; 
<a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/database_file_object.html">c3ref/database_file_object.html</a> <a href="c3ref/enable_shared_cache.html">c3ref/enable_shared_cache.html</a> <a href="c3ref/intro.html">c3ref/intro.html</a> <a href="c3ref/open.html">c3ref/open.html</a> <a href="c3ref/vfs.html">c3ref/vfs.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_vacuum.html">lang_vacuum.html</a> <a href="rescode.html">rescode.html</a> <a href="sharedcache.html">sharedcache.html</a> <a href="threadsafe.html">threadsafe.html</a> <a href="uri.html">uri.html</a> </li>
<li><a href="c3ref/c_prepare_normalize.html">c3ref/c_prepare_normalize.html</a> &rarr; 
<a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/prepare.html">c3ref/prepare.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/c_scanstat_complex.html">c3ref/c_scanstat_complex.html</a> &rarr; 
<a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/c_scanstat_est.html">c3ref/c_scanstat_est.html</a> &rarr; 
<a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/stmt_scanstatus.html">c3ref/stmt_scanstatus.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/c_serialize_nocopy.html">c3ref/c_serialize_nocopy.html</a> &rarr; 
<a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/c_shm_exclusive.html">c3ref/c_shm_exclusive.html</a> &rarr; 
<a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/c_shm_nlock.html">c3ref/c_shm_nlock.html</a> &rarr; 
<a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/c_source_id.html">c3ref/c_source_id.html</a> &rarr; 
<a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/libversion.html">c3ref/libversion.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="fileformat2.html">fileformat2.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="th3.html">th3.html</a> <a href="versionnumbers.html">versionnumbers.html</a> </li>
<li><a href="c3ref/c_static.html">c3ref/c_static.html</a> &rarr; 
<a href="c3ref/bind_blob.html">c3ref/bind_blob.html</a> <a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="carray.html">carray.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/c_status_malloc_count.html">c3ref/c_status_malloc_count.html</a> &rarr; 
<a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/status.html">c3ref/status.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="malloc.html">malloc.html</a> <a href="memstat.html">memstat.html</a> </li>
<li><a href="c3ref/c_stmtstatus_counter.html">c3ref/c_stmtstatus_counter.html</a> &rarr; 
<a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/stmt_status.html">c3ref/stmt_status.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_indexedby.html">lang_indexedby.html</a> <a href="stmt.html">stmt.html</a> </li>
<li><a href="c3ref/c_sync_dataonly.html">c3ref/c_sync_dataonly.html</a> &rarr; 
<a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/c_testctrl_always.html">c3ref/c_testctrl_always.html</a> &rarr; 
<a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="testing.html">testing.html</a> </li>
<li><a href="c3ref/c_trace.html">c3ref/c_trace.html</a> &rarr; 
<a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/trace_v2.html">c3ref/trace_v2.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/c_txn_none.html">c3ref/c_txn_none.html</a> &rarr; 
<a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/txn_state.html">c3ref/txn_state.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/c_vtab_constraint_support.html">c3ref/c_vtab_constraint_support.html</a> &rarr; 
<a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> <a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/vtab_config.html">c3ref/vtab_config.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="security.html">security.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="c3ref/c_win32_data_directory_type.html">c3ref/c_win32_data_directory_type.html</a> &rarr; 
<a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/cancel_auto_extension.html">c3ref/cancel_auto_extension.html</a> &rarr; 
<a href="c3ref/auto_extension.html">c3ref/auto_extension.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/clear_bindings.html">c3ref/clear_bindings.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/reset.html">c3ref/reset.html</a> <a href="c3ref/stmt.html">c3ref/stmt.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/close.html">c3ref/close.html</a> &rarr; 
<a href="backup.html">backup.html</a> <a href="c3ref/create_collation.html">c3ref/create_collation.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/open.html">c3ref/open.html</a> <a href="c3ref/snapshot_recover.html">c3ref/snapshot_recover.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="c3ref/unlock_notify.html">c3ref/unlock_notify.html</a> <a href="capi3.html">capi3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cintro.html">cintro.html</a> <a href="howtocorrupt.html">howtocorrupt.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="malloc.html">malloc.html</a> <a href="quickstart.html">quickstart.html</a> <a href="stmt.html">stmt.html</a> <a href="tempfiles.html">tempfiles.html</a> <a href="wal.html">wal.html</a> <a href="walformat.html">walformat.html</a> </li>
<li><a href="c3ref/collation_needed.html">c3ref/collation_needed.html</a> &rarr; 
<a href="c3ref/create_collation.html">c3ref/create_collation.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/column_blob.html">c3ref/column_blob.html</a> &rarr; 
<a href="c3ref/data_count.html">c3ref/data_count.html</a> <a href="c3ref/exec.html">c3ref/exec.html</a> <a href="c3ref/free_table.html">c3ref/free_table.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/step.html">c3ref/step.html</a> <a href="c3ref/stmt.html">c3ref/stmt.html</a> <a href="c3ref/value.html">c3ref/value.html</a> <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> <a href="capi3.html">capi3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cintro.html">cintro.html</a> <a href="compile.html">compile.html</a> <a href="invalidutf.html">invalidutf.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="opcode.html">opcode.html</a> <a href="rescode.html">rescode.html</a> </li>
<li><a href="c3ref/column_count.html">c3ref/column_count.html</a> &rarr; 
<a href="c3ref/column_blob.html">c3ref/column_blob.html</a> <a href="c3ref/data_count.html">c3ref/data_count.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/stmt.html">c3ref/stmt.html</a> <a href="capi3.html">capi3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cintro.html">cintro.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/column_database_name.html">c3ref/column_database_name.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/stmt.html">c3ref/stmt.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/column_decltype.html">c3ref/column_decltype.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/stmt.html">c3ref/stmt.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/column_name.html">c3ref/column_name.html</a> &rarr; 
<a href="c3ref/exec.html">c3ref/exec.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/stmt.html">c3ref/stmt.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="faq.html">faq.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/commit_hook.html">c3ref/commit_hook.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="c3ref/update_hook.html">c3ref/update_hook.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="rescode.html">rescode.html</a> </li>
<li><a href="c3ref/compileoption_get.html">c3ref/compileoption_get.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_corefunc.html">lang_corefunc.html</a> <a href="pragma.html">pragma.html</a> <a href="th3.html">th3.html</a> </li>
<li><a href="c3ref/complete.html">c3ref/complete.html</a> &rarr; 
<a href="arch.html">arch.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="tclsqlite.html">tclsqlite.html</a> </li>
<li><a href="c3ref/config.html">c3ref/config.html</a> &rarr; 
<a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/db_config.html">c3ref/db_config.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/hard_heap_limit64.html">c3ref/hard_heap_limit64.html</a> <a href="c3ref/initialize.html">c3ref/initialize.html</a> <a href="c3ref/log.html">c3ref/log.html</a> <a href="c3ref/mem_methods.html">c3ref/mem_methods.html</a> <a href="c3ref/open.html">c3ref/open.html</a> <a href="c3ref/pcache_methods2.html">c3ref/pcache_methods2.html</a> <a href="c3ref/threadsafe.html">c3ref/threadsafe.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cintro.html">cintro.html</a> <a href="compile.html">compile.html</a> <a href="custombuild.html">custombuild.html</a> <a href="errlog.html">errlog.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_vacuum.html">lang_vacuum.html</a> <a href="loadext.html">loadext.html</a> <a href="malloc.html">malloc.html</a> <a href="mmap.html">mmap.html</a> <a href="pragma.html">pragma.html</a> <a href="privatebranch.html">privatebranch.html</a> <a href="security.html">security.html</a> <a href="testing.html">testing.html</a> <a href="threadsafe.html">threadsafe.html</a> <a href="uri.html">uri.html</a> </li>
<li><a href="c3ref/constlist.html">c3ref/constlist.html</a> &rarr; 
<a href="c3ref/aggregate_context.html">c3ref/aggregate_context.html</a> <a href="c3ref/aggregate_count.html">c3ref/aggregate_count.html</a> <a href="c3ref/api_routines.html">c3ref/api_routines.html</a> <a href="c3ref/auto_extension.html">c3ref/auto_extension.html</a> <a href="c3ref/autovacuum_pages.html">c3ref/autovacuum_pages.html</a> <a href="c3ref/backup.html">c3ref/backup.html</a> <a href="c3ref/backup_finish.html">c3ref/backup_finish.html</a> <a href="c3ref/bind_blob.html">c3ref/bind_blob.html</a> <a href="c3ref/bind_parameter_count.html">c3ref/bind_parameter_count.html</a> <a href="c3ref/bind_parameter_index.html">c3ref/bind_parameter_index.html</a> <a href="c3ref/bind_parameter_name.html">c3ref/bind_parameter_name.html</a> <a href="c3ref/blob.html">c3ref/blob.html</a> <a href="c3ref/blob_bytes.html">c3ref/blob_bytes.html</a> <a href="c3ref/blob_close.html">c3ref/blob_close.html</a> <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> <a href="c3ref/blob_read.html">c3ref/blob_read.html</a> <a href="c3ref/blob_reopen.html">c3ref/blob_reopen.html</a> <a href="c3ref/blob_write.html">c3ref/blob_write.html</a> <a href="c3ref/busy_handler.html">c3ref/busy_handler.html</a> <a href="c3ref/busy_timeout.html">c3ref/busy_timeout.html</a> <a href="c3ref/c_abort.html">c3ref/c_abort.html</a> <a href="c3ref/c_abort_rollback.html">c3ref/c_abort_rollback.html</a> <a href="c3ref/c_access_exists.html">c3ref/c_access_exists.html</a> <a href="c3ref/c_alter_table.html">c3ref/c_alter_table.html</a> <a href="c3ref/c_any.html">c3ref/c_any.html</a> <a href="c3ref/c_blob.html">c3ref/c_blob.html</a> <a href="c3ref/c_checkpoint_full.html">c3ref/c_checkpoint_full.html</a> <a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> <a href="c3ref/c_dbstatus_options.html">c3ref/c_dbstatus_options.html</a> <a href="c3ref/c_deny.html">c3ref/c_deny.html</a> <a href="c3ref/c_deserialize_freeonclose.html">c3ref/c_deserialize_freeonclose.html</a> <a href="c3ref/c_deterministic.html">c3ref/c_deterministic.html</a> <a href="c3ref/c_fail.html">c3ref/c_fail.html</a> <a href="c3ref/c_fcntl_begin_atomic_write.html">c3ref/c_fcntl_begin_atomic_write.html</a> <a href="c3ref/c_index_constraint_eq.html">c3ref/c_index_constraint_eq.html</a> <a href="c3ref/c_index_scan_unique.html">c3ref/c_index_scan_unique.html</a> <a href="c3ref/c_iocap_atomic.html">c3ref/c_iocap_atomic.html</a> <a href="c3ref/c_limit_attached.html">c3ref/c_limit_attached.html</a> <a href="c3ref/c_lock_exclusive.html">c3ref/c_lock_exclusive.html</a> <a href="c3ref/c_mutex_fast.html">c3ref/c_mutex_fast.html</a> <a href="c3ref/c_open_autoproxy.html">c3ref/c_open_autoproxy.html</a> <a href="c3ref/c_prepare_normalize.html">c3ref/c_prepare_normalize.html</a> <a href="c3ref/c_scanstat_complex.html">c3ref/c_scanstat_complex.html</a> <a href="c3ref/c_scanstat_est.html">c3ref/c_scanstat_est.html</a> <a href="c3ref/c_serialize_nocopy.html">c3ref/c_serialize_nocopy.html</a> <a href="c3ref/c_shm_exclusive.html">c3ref/c_shm_exclusive.html</a> <a href="c3ref/c_shm_nlock.html">c3ref/c_shm_nlock.html</a> <a href="c3ref/c_source_id.html">c3ref/c_source_id.html</a> <a href="c3ref/c_static.html">c3ref/c_static.html</a> <a href="c3ref/c_status_malloc_count.html">c3ref/c_status_malloc_count.html</a> <a href="c3ref/c_stmtstatus_counter.html">c3ref/c_stmtstatus_counter.html</a> <a href="c3ref/c_sync_dataonly.html">c3ref/c_sync_dataonly.html</a> <a href="c3ref/c_testctrl_always.html">c3ref/c_testctrl_always.html</a> <a href="c3ref/c_trace.html">c3ref/c_trace.html</a> <a href="c3ref/c_txn_none.html">c3ref/c_txn_none.html</a> <a href="c3ref/c_vtab_constraint_support.html">c3ref/c_vtab_constraint_support.html</a> <a href="c3ref/c_win32_data_directory_type.html">c3ref/c_win32_data_directory_type.html</a> <a href="c3ref/cancel_auto_extension.html">c3ref/cancel_auto_extension.html</a> <a href="c3ref/clear_bindings.html">c3ref/clear_bindings.html</a> <a href="c3ref/close.html">c3ref/close.html</a> <a href="c3ref/collation_needed.html">c3ref/collation_needed.html</a> <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> <a href="c3ref/column_count.html">c3ref/column_count.html</a> <a href="c3ref/column_database_name.html">c3ref/column_database_name.html</a> <a href="c3ref/column_decltype.html">c3ref/column_decltype.html</a> <a href="c3ref/column_name.html">c3ref/column_name.html</a> <a href="c3ref/commit_hook.html">c3ref/commit_hook.html</a> <a href="c3ref/compileoption_get.html">c3ref/compileoption_get.html</a> <a href="c3ref/complete.html">c3ref/complete.html</a> <a href="c3ref/config.html">c3ref/config.html</a> <a href="c3ref/context.html">c3ref/context.html</a> <a href="c3ref/context_db_handle.html">c3ref/context_db_handle.html</a> <a href="c3ref/create_collation.html">c3ref/create_collation.html</a> <a href="c3ref/create_filename.html">c3ref/create_filename.html</a> <a href="c3ref/create_function.html">c3ref/create_function.html</a> <a href="c3ref/create_module.html">c3ref/create_module.html</a> <a href="c3ref/data_count.html">c3ref/data_count.html</a> <a href="c3ref/data_directory.html">c3ref/data_directory.html</a> <a href="c3ref/database_file_object.html">c3ref/database_file_object.html</a> <a href="c3ref/db_cacheflush.html">c3ref/db_cacheflush.html</a> <a href="c3ref/db_config.html">c3ref/db_config.html</a> <a href="c3ref/db_filename.html">c3ref/db_filename.html</a> <a href="c3ref/db_handle.html">c3ref/db_handle.html</a> <a href="c3ref/db_mutex.html">c3ref/db_mutex.html</a> <a href="c3ref/db_name.html">c3ref/db_name.html</a> <a href="c3ref/db_readonly.html">c3ref/db_readonly.html</a> <a href="c3ref/db_release_memory.html">c3ref/db_release_memory.html</a> <a href="c3ref/db_status.html">c3ref/db_status.html</a> <a href="c3ref/declare_vtab.html">c3ref/declare_vtab.html</a> <a href="c3ref/deserialize.html">c3ref/deserialize.html</a> <a href="c3ref/drop_modules.html">c3ref/drop_modules.html</a> <a href="c3ref/enable_load_extension.html">c3ref/enable_load_extension.html</a> <a href="c3ref/enable_shared_cache.html">c3ref/enable_shared_cache.html</a> <a href="c3ref/errcode.html">c3ref/errcode.html</a> <a href="c3ref/exec.html">c3ref/exec.html</a> <a href="c3ref/expanded_sql.html">c3ref/expanded_sql.html</a> <a href="c3ref/extended_result_codes.html">c3ref/extended_result_codes.html</a> <a href="c3ref/file.html">c3ref/file.html</a> <a href="c3ref/file_control.html">c3ref/file_control.html</a> <a href="c3ref/filename.html">c3ref/filename.html</a> <a href="c3ref/filename_database.html">c3ref/filename_database.html</a> <a href="c3ref/finalize.html">c3ref/finalize.html</a> <a href="c3ref/free.html">c3ref/free.html</a> <a href="c3ref/free_table.html">c3ref/free_table.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/get_autocommit.html">c3ref/get_autocommit.html</a> <a href="c3ref/get_auxdata.html">c3ref/get_auxdata.html</a> <a href="c3ref/get_clientdata.html">c3ref/get_clientdata.html</a> <a href="c3ref/hard_heap_limit64.html">c3ref/hard_heap_limit64.html</a> <a href="c3ref/index_info.html">c3ref/index_info.html</a> <a href="c3ref/initialize.html">c3ref/initialize.html</a> <a href="c3ref/int64.html">c3ref/int64.html</a> <a href="c3ref/interrupt.html">c3ref/interrupt.html</a> <a href="c3ref/intro.html">c3ref/intro.html</a> <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> <a href="c3ref/keyword_check.html">c3ref/keyword_check.html</a> <a href="c3ref/last_insert_rowid.html">c3ref/last_insert_rowid.html</a> <a href="c3ref/libversion.html">c3ref/libversion.html</a> <a href="c3ref/limit.html">c3ref/limit.html</a> <a href="c3ref/load_extension.html">c3ref/load_extension.html</a> <a href="c3ref/log.html">c3ref/log.html</a> <a href="c3ref/mem_methods.html">c3ref/mem_methods.html</a> <a href="c3ref/memory_highwater.html">c3ref/memory_highwater.html</a> <a href="c3ref/module.html">c3ref/module.html</a> <a href="c3ref/mprintf.html">c3ref/mprintf.html</a> <a href="c3ref/mutex.html">c3ref/mutex.html</a> <a href="c3ref/mutex_alloc.html">c3ref/mutex_alloc.html</a> <a href="c3ref/mutex_held.html">c3ref/mutex_held.html</a> <a href="c3ref/mutex_methods.html">c3ref/mutex_methods.html</a> <a href="c3ref/next_stmt.html">c3ref/next_stmt.html</a> <a href="c3ref/objlist.html">c3ref/objlist.html</a> <a href="c3ref/open.html">c3ref/open.html</a> <a href="c3ref/overload_function.html">c3ref/overload_function.html</a> <a href="c3ref/pcache.html">c3ref/pcache.html</a> <a href="c3ref/pcache_methods2.html">c3ref/pcache_methods2.html</a> <a href="c3ref/pcache_page.html">c3ref/pcache_page.html</a> <a href="c3ref/prepare.html">c3ref/prepare.html</a> <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> <a href="c3ref/profile.html">c3ref/profile.html</a> <a href="c3ref/progress_handler.html">c3ref/progress_handler.html</a> <a href="c3ref/randomness.html">c3ref/randomness.html</a> <a href="c3ref/release_memory.html">c3ref/release_memory.html</a> <a href="c3ref/reset.html">c3ref/reset.html</a> <a href="c3ref/reset_auto_extension.html">c3ref/reset_auto_extension.html</a> <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> <a href="c3ref/result_subtype.html">c3ref/result_subtype.html</a> <a href="c3ref/serialize.html">c3ref/serialize.html</a> <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> <a href="c3ref/set_last_insert_rowid.html">c3ref/set_last_insert_rowid.html</a> <a href="c3ref/sleep.html">c3ref/sleep.html</a> <a href="c3ref/snapshot.html">c3ref/snapshot.html</a> <a href="c3ref/snapshot_cmp.html">c3ref/snapshot_cmp.html</a> <a href="c3ref/snapshot_free.html">c3ref/snapshot_free.html</a> <a href="c3ref/snapshot_get.html">c3ref/snapshot_get.html</a> <a href="c3ref/snapshot_open.html">c3ref/snapshot_open.html</a> <a href="c3ref/snapshot_recover.html">c3ref/snapshot_recover.html</a> <a href="c3ref/soft_heap_limit.html">c3ref/soft_heap_limit.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="c3ref/status.html">c3ref/status.html</a> <a href="c3ref/step.html">c3ref/step.html</a> <a href="c3ref/stmt.html">c3ref/stmt.html</a> <a href="c3ref/stmt_busy.html">c3ref/stmt_busy.html</a> <a href="c3ref/stmt_explain.html">c3ref/stmt_explain.html</a> <a href="c3ref/stmt_isexplain.html">c3ref/stmt_isexplain.html</a> <a href="c3ref/stmt_readonly.html">c3ref/stmt_readonly.html</a> <a href="c3ref/stmt_scanstatus.html">c3ref/stmt_scanstatus.html</a> <a href="c3ref/stmt_scanstatus_reset.html">c3ref/stmt_scanstatus_reset.html</a> <a href="c3ref/stmt_status.html">c3ref/stmt_status.html</a> <a href="c3ref/str.html">c3ref/str.html</a> <a href="c3ref/str_append.html">c3ref/str_append.html</a> <a href="c3ref/str_errcode.html">c3ref/str_errcode.html</a> <a href="c3ref/str_finish.html">c3ref/str_finish.html</a> <a href="c3ref/str_new.html">c3ref/str_new.html</a> <a href="c3ref/strglob.html">c3ref/strglob.html</a> <a href="c3ref/stricmp.html">c3ref/stricmp.html</a> <a href="c3ref/strlike.html">c3ref/strlike.html</a> <a href="c3ref/system_errno.html">c3ref/system_errno.html</a> <a href="c3ref/table_column_metadata.html">c3ref/table_column_metadata.html</a> <a href="c3ref/temp_directory.html">c3ref/temp_directory.html</a> <a href="c3ref/test_control.html">c3ref/test_control.html</a> <a href="c3ref/threadsafe.html">c3ref/threadsafe.html</a> <a href="c3ref/trace_v2.html">c3ref/trace_v2.html</a> <a href="c3ref/txn_state.html">c3ref/txn_state.html</a> <a href="c3ref/unlock_notify.html">c3ref/unlock_notify.html</a> <a href="c3ref/update_hook.html">c3ref/update_hook.html</a> <a href="c3ref/uri_boolean.html">c3ref/uri_boolean.html</a> <a href="c3ref/user_data.html">c3ref/user_data.html</a> <a href="c3ref/value.html">c3ref/value.html</a> <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> <a href="c3ref/value_dup.html">c3ref/value_dup.html</a> <a href="c3ref/value_encoding.html">c3ref/value_encoding.html</a> <a href="c3ref/value_subtype.html">c3ref/value_subtype.html</a> <a href="c3ref/vfs.html">c3ref/vfs.html</a> <a href="c3ref/vfs_find.html">c3ref/vfs_find.html</a> <a href="c3ref/vtab.html">c3ref/vtab.html</a> <a href="c3ref/vtab_collation.html">c3ref/vtab_collation.html</a> <a href="c3ref/vtab_config.html">c3ref/vtab_config.html</a> <a href="c3ref/vtab_cursor.html">c3ref/vtab_cursor.html</a> <a href="c3ref/vtab_distinct.html">c3ref/vtab_distinct.html</a> <a href="c3ref/vtab_in.html">c3ref/vtab_in.html</a> <a href="c3ref/vtab_in_first.html">c3ref/vtab_in_first.html</a> <a href="c3ref/vtab_nochange.html">c3ref/vtab_nochange.html</a> <a href="c3ref/vtab_on_conflict.html">c3ref/vtab_on_conflict.html</a> <a href="c3ref/vtab_rhs_value.html">c3ref/vtab_rhs_value.html</a> <a href="c3ref/wal_autocheckpoint.html">c3ref/wal_autocheckpoint.html</a> <a href="c3ref/wal_checkpoint.html">c3ref/wal_checkpoint.html</a> <a href="c3ref/wal_checkpoint_v2.html">c3ref/wal_checkpoint_v2.html</a> <a href="c3ref/wal_hook.html">c3ref/wal_hook.html</a> <a href="c3ref/win32_set_directory.html">c3ref/win32_set_directory.html</a> </li>
<li><a href="c3ref/context.html">c3ref/context.html</a> &rarr; 
<a href="c3ref/aggregate_context.html">c3ref/aggregate_context.html</a> <a href="c3ref/objlist.html">c3ref/objlist.html</a> <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> <a href="c3ref/result_subtype.html">c3ref/result_subtype.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="windowfunctions.html">windowfunctions.html</a> </li>
<li><a href="c3ref/context_db_handle.html">c3ref/context_db_handle.html</a> &rarr; 
<a href="appfunc.html">appfunc.html</a> <a href="c3ref/context.html">c3ref/context.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/create_collation.html">c3ref/create_collation.html</a> &rarr; 
<a href="c3ref/collation_needed.html">c3ref/collation_needed.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cintro.html">cintro.html</a> <a href="datatype3.html">datatype3.html</a> <a href="different.html">different.html</a> <a href="faq.html">faq.html</a> <a href="fileformat2.html">fileformat2.html</a> <a href="fullsql.html">fullsql.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/create_filename.html">c3ref/create_filename.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/uri_boolean.html">c3ref/uri_boolean.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/create_function.html">c3ref/create_function.html</a> &rarr; 
<a href="appfunc.html">appfunc.html</a> <a href="c3ref/c_deterministic.html">c3ref/c_deterministic.html</a> <a href="c3ref/context_db_handle.html">c3ref/context_db_handle.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> <a href="c3ref/result_subtype.html">c3ref/result_subtype.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="c3ref/user_data.html">c3ref/user_data.html</a> <a href="c3ref/value_subtype.html">c3ref/value_subtype.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cintro.html">cintro.html</a> <a href="deterministic.html">deterministic.html</a> <a href="different.html">different.html</a> <a href="faq.html">faq.html</a> <a href="fts3.html">fts3.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_aggfunc.html">lang_aggfunc.html</a> <a href="lang_corefunc.html">lang_corefunc.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="optoverview.html">optoverview.html</a> <a href="pragma.html">pragma.html</a> <a href="rbu.html">rbu.html</a> <a href="rtree.html">rtree.html</a> <a href="windowfunctions.html">windowfunctions.html</a> </li>
<li><a href="c3ref/create_module.html">c3ref/create_module.html</a> &rarr; 
<a href="c3ref/drop_modules.html">c3ref/drop_modules.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/module.html">c3ref/module.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cintro.html">cintro.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_createvtab.html">lang_createvtab.html</a> <a href="rtree.html">rtree.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="c3ref/data_count.html">c3ref/data_count.html</a> &rarr; 
<a href="c3ref/column_count.html">c3ref/column_count.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/stmt.html">c3ref/stmt.html</a> <a href="capi3.html">capi3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/data_directory.html">c3ref/data_directory.html</a> &rarr; 
<a href="c3ref/objlist.html">c3ref/objlist.html</a> <a href="c3ref/win32_set_directory.html">c3ref/win32_set_directory.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="pragma.html">pragma.html</a> </li>
<li><a href="c3ref/database_file_object.html">c3ref/database_file_object.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/db_cacheflush.html">c3ref/db_cacheflush.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/db_config.html">c3ref/db_config.html</a> &rarr; 
<a href="appfunc.html">appfunc.html</a> <a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> <a href="c3ref/enable_load_extension.html">c3ref/enable_load_extension.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/load_extension.html">c3ref/load_extension.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cintro.html">cintro.html</a> <a href="compile.html">compile.html</a> <a href="fts3.html">fts3.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="loadext.html">loadext.html</a> <a href="malloc.html">malloc.html</a> <a href="pragma.html">pragma.html</a> <a href="privatebranch.html">privatebranch.html</a> <a href="queryplanner-ng.html">queryplanner-ng.html</a> <a href="quirks.html">quirks.html</a> <a href="security.html">security.html</a> <a href="tclsqlite.html">tclsqlite.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="c3ref/db_filename.html">c3ref/db_filename.html</a> &rarr; 
<a href="c3ref/filename_database.html">c3ref/filename_database.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="c3ref/uri_boolean.html">c3ref/uri_boolean.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/db_handle.html">c3ref/db_handle.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/stmt.html">c3ref/stmt.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="unlock_notify.html">unlock_notify.html</a> </li>
<li><a href="c3ref/db_mutex.html">c3ref/db_mutex.html</a> &rarr; 
<a href="c3ref/errcode.html">c3ref/errcode.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/db_name.html">c3ref/db_name.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/db_readonly.html">c3ref/db_readonly.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/open.html">c3ref/open.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="pragma.html">pragma.html</a> </li>
<li><a href="c3ref/db_release_memory.html">c3ref/db_release_memory.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/release_memory.html">c3ref/release_memory.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="pragma.html">pragma.html</a> </li>
<li><a href="c3ref/db_status.html">c3ref/db_status.html</a> &rarr; 
<a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> <a href="c3ref/c_dbstatus_options.html">c3ref/c_dbstatus_options.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="c3ref/status.html">c3ref/status.html</a> <a href="c3ref/stmt_status.html">c3ref/stmt_status.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="malloc.html">malloc.html</a> <a href="memstat.html">memstat.html</a> <a href="pragma.html">pragma.html</a> <a href="vtablist.html">vtablist.html</a> </li>
<li><a href="c3ref/declare_vtab.html">c3ref/declare_vtab.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/vtab_collation.html">c3ref/vtab_collation.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="csv.html">csv.html</a> <a href="fts3.html">fts3.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="c3ref/deserialize.html">c3ref/deserialize.html</a> &rarr; 
<a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/c_deserialize_freeonclose.html">c3ref/c_deserialize_freeonclose.html</a> <a href="c3ref/c_fcntl_begin_atomic_write.html">c3ref/c_fcntl_begin_atomic_write.html</a> <a href="c3ref/c_serialize_nocopy.html">c3ref/c_serialize_nocopy.html</a> <a href="c3ref/db_name.html">c3ref/db_name.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/serialize.html">c3ref/serialize.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cli.html">cli.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/drop_modules.html">c3ref/drop_modules.html</a> &rarr; 
<a href="c3ref/create_module.html">c3ref/create_module.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/enable_load_extension.html">c3ref/enable_load_extension.html</a> &rarr; 
<a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/load_extension.html">c3ref/load_extension.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_corefunc.html">lang_corefunc.html</a> <a href="loadext.html">loadext.html</a> <a href="tclsqlite.html">tclsqlite.html</a> </li>
<li><a href="c3ref/enable_shared_cache.html">c3ref/enable_shared_cache.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/open.html">c3ref/open.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="pragma.html">pragma.html</a> <a href="sharedcache.html">sharedcache.html</a> </li>
<li><a href="c3ref/errcode.html">c3ref/errcode.html</a> &rarr; 
<a href="backup.html">backup.html</a> <a href="c3ref/backup_finish.html">c3ref/backup_finish.html</a> <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> <a href="c3ref/blob_write.html">c3ref/blob_write.html</a> <a href="c3ref/c_abort_rollback.html">c3ref/c_abort_rollback.html</a> <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> <a href="c3ref/db_cacheflush.html">c3ref/db_cacheflush.html</a> <a href="c3ref/file_control.html">c3ref/file_control.html</a> <a href="c3ref/free_table.html">c3ref/free_table.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/open.html">c3ref/open.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="c3ref/step.html">c3ref/step.html</a> <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> <a href="c3ref/wal_checkpoint_v2.html">c3ref/wal_checkpoint_v2.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="invalidutf.html">invalidutf.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="rescode.html">rescode.html</a> </li>
<li><a href="c3ref/exec.html">c3ref/exec.html</a> &rarr; 
<a href="backup.html">backup.html</a> <a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> <a href="c3ref/free_table.html">c3ref/free_table.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="c3ref/stmt_readonly.html">c3ref/stmt_readonly.html</a> <a href="capi3.html">capi3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cintro.html">cintro.html</a> <a href="cli.html">cli.html</a> <a href="faq.html">faq.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="pragma.html">pragma.html</a> <a href="quickstart.html">quickstart.html</a> <a href="rescode.html">rescode.html</a> </li>
<li><a href="c3ref/expanded_sql.html">c3ref/expanded_sql.html</a> &rarr; 
<a href="c3ref/c_prepare_normalize.html">c3ref/c_prepare_normalize.html</a> <a href="c3ref/c_trace.html">c3ref/c_trace.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/stmt.html">c3ref/stmt.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/experimental.html">c3ref/experimental.html</a> &rarr; 
<a href="c3ref/aggregate_count.html">c3ref/aggregate_count.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/rebaser.html">session/rebaser.html</a> <a href="session/sqlite3rebaser_configure.html">session/sqlite3rebaser_configure.html</a> <a href="session/sqlite3rebaser_create.html">session/sqlite3rebaser_create.html</a> <a href="session/sqlite3rebaser_delete.html">session/sqlite3rebaser_delete.html</a> <a href="session/sqlite3rebaser_rebase.html">session/sqlite3rebaser_rebase.html</a> </li>
<li><a href="c3ref/extended_result_codes.html">c3ref/extended_result_codes.html</a> &rarr; 
<a href="c3ref/c_abort_rollback.html">c3ref/c_abort_rollback.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/open.html">c3ref/open.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="rescode.html">rescode.html</a> </li>
<li><a href="c3ref/file.html">c3ref/file.html</a> &rarr; 
<a href="c3ref/c_fcntl_begin_atomic_write.html">c3ref/c_fcntl_begin_atomic_write.html</a> <a href="c3ref/database_file_object.html">c3ref/database_file_object.html</a> <a href="c3ref/file_control.html">c3ref/file_control.html</a> <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> <a href="c3ref/objlist.html">c3ref/objlist.html</a> <a href="c3ref/vfs.html">c3ref/vfs.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="vfs.html">vfs.html</a> </li>
<li><a href="c3ref/file_control.html">c3ref/file_control.html</a> &rarr; 
<a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/c_fcntl_begin_atomic_write.html">c3ref/c_fcntl_begin_atomic_write.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> <a href="c3ref/snapshot_recover.html">c3ref/snapshot_recover.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="memstat.html">memstat.html</a> <a href="pragma.html">pragma.html</a> <a href="psow.html">psow.html</a> <a href="rescode.html">rescode.html</a> <a href="wal.html">wal.html</a> <a href="walformat.html">walformat.html</a> </li>
<li><a href="c3ref/filename.html">c3ref/filename.html</a> &rarr; 
<a href="c3ref/objlist.html">c3ref/objlist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/filename_database.html">c3ref/filename_database.html</a> &rarr; 
<a href="c3ref/create_filename.html">c3ref/create_filename.html</a> <a href="c3ref/db_filename.html">c3ref/db_filename.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/finalize.html">c3ref/finalize.html</a> &rarr; 
<a href="c3ref/c_prepare_normalize.html">c3ref/c_prepare_normalize.html</a> <a href="c3ref/close.html">c3ref/close.html</a> <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> <a href="c3ref/column_database_name.html">c3ref/column_database_name.html</a> <a href="c3ref/column_name.html">c3ref/column_name.html</a> <a href="c3ref/exec.html">c3ref/exec.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/get_auxdata.html">c3ref/get_auxdata.html</a> <a href="c3ref/prepare.html">c3ref/prepare.html</a> <a href="c3ref/step.html">c3ref/step.html</a> <a href="c3ref/stmt.html">c3ref/stmt.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cintro.html">cintro.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_transaction.html">lang_transaction.html</a> <a href="malloc.html">malloc.html</a> <a href="opcode.html">opcode.html</a> <a href="pragma.html">pragma.html</a> <a href="rescode.html">rescode.html</a> <a href="stmt.html">stmt.html</a> <a href="tclsqlite.html">tclsqlite.html</a> </li>
<li><a href="c3ref/free.html">c3ref/free.html</a> &rarr; 
<a href="c3ref/auto_extension.html">c3ref/auto_extension.html</a> <a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> <a href="c3ref/c_deserialize_freeonclose.html">c3ref/c_deserialize_freeonclose.html</a> <a href="c3ref/c_fcntl_begin_atomic_write.html">c3ref/c_fcntl_begin_atomic_write.html</a> <a href="c3ref/c_status_malloc_count.html">c3ref/c_status_malloc_count.html</a> <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> <a href="c3ref/data_directory.html">c3ref/data_directory.html</a> <a href="c3ref/deserialize.html">c3ref/deserialize.html</a> <a href="c3ref/exec.html">c3ref/exec.html</a> <a href="c3ref/expanded_sql.html">c3ref/expanded_sql.html</a> <a href="c3ref/free_table.html">c3ref/free_table.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/index_info.html">c3ref/index_info.html</a> <a href="c3ref/load_extension.html">c3ref/load_extension.html</a> <a href="c3ref/mem_methods.html">c3ref/mem_methods.html</a> <a href="c3ref/memory_highwater.html">c3ref/memory_highwater.html</a> <a href="c3ref/mprintf.html">c3ref/mprintf.html</a> <a href="c3ref/mutex_methods.html">c3ref/mutex_methods.html</a> <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> <a href="c3ref/serialize.html">c3ref/serialize.html</a> <a href="c3ref/str_finish.html">c3ref/str_finish.html</a> <a href="c3ref/temp_directory.html">c3ref/temp_directory.html</a> <a href="c3ref/vtab.html">c3ref/vtab.html</a> <a href="c3ref/win32_set_directory.html">c3ref/win32_set_directory.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="custombuild.html">custombuild.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="malloc.html">malloc.html</a> <a href="printf.html">printf.html</a> <a href="rescode.html">rescode.html</a> <a href="session.html">session.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="c3ref/free_table.html">c3ref/free_table.html</a> &rarr; 
<a href="arch.html">arch.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cintro.html">cintro.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> </li>
<li><a href="c3ref/funclist.html">c3ref/funclist.html</a> &rarr; 
<a href="c3ref/aggregate_context.html">c3ref/aggregate_context.html</a> <a href="c3ref/aggregate_count.html">c3ref/aggregate_count.html</a> <a href="c3ref/api_routines.html">c3ref/api_routines.html</a> <a href="c3ref/auto_extension.html">c3ref/auto_extension.html</a> <a href="c3ref/autovacuum_pages.html">c3ref/autovacuum_pages.html</a> <a href="c3ref/backup.html">c3ref/backup.html</a> <a href="c3ref/backup_finish.html">c3ref/backup_finish.html</a> <a href="c3ref/bind_blob.html">c3ref/bind_blob.html</a> <a href="c3ref/bind_parameter_count.html">c3ref/bind_parameter_count.html</a> <a href="c3ref/bind_parameter_index.html">c3ref/bind_parameter_index.html</a> <a href="c3ref/bind_parameter_name.html">c3ref/bind_parameter_name.html</a> <a href="c3ref/blob.html">c3ref/blob.html</a> <a href="c3ref/blob_bytes.html">c3ref/blob_bytes.html</a> <a href="c3ref/blob_close.html">c3ref/blob_close.html</a> <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> <a href="c3ref/blob_read.html">c3ref/blob_read.html</a> <a href="c3ref/blob_reopen.html">c3ref/blob_reopen.html</a> <a href="c3ref/blob_write.html">c3ref/blob_write.html</a> <a href="c3ref/busy_handler.html">c3ref/busy_handler.html</a> <a href="c3ref/busy_timeout.html">c3ref/busy_timeout.html</a> <a href="c3ref/c_abort.html">c3ref/c_abort.html</a> <a href="c3ref/c_abort_rollback.html">c3ref/c_abort_rollback.html</a> <a href="c3ref/c_access_exists.html">c3ref/c_access_exists.html</a> <a href="c3ref/c_alter_table.html">c3ref/c_alter_table.html</a> <a href="c3ref/c_any.html">c3ref/c_any.html</a> <a href="c3ref/c_blob.html">c3ref/c_blob.html</a> <a href="c3ref/c_checkpoint_full.html">c3ref/c_checkpoint_full.html</a> <a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> <a href="c3ref/c_dbstatus_options.html">c3ref/c_dbstatus_options.html</a> <a href="c3ref/c_deny.html">c3ref/c_deny.html</a> <a href="c3ref/c_deserialize_freeonclose.html">c3ref/c_deserialize_freeonclose.html</a> <a href="c3ref/c_deterministic.html">c3ref/c_deterministic.html</a> <a href="c3ref/c_fail.html">c3ref/c_fail.html</a> <a href="c3ref/c_fcntl_begin_atomic_write.html">c3ref/c_fcntl_begin_atomic_write.html</a> <a href="c3ref/c_index_constraint_eq.html">c3ref/c_index_constraint_eq.html</a> <a href="c3ref/c_index_scan_unique.html">c3ref/c_index_scan_unique.html</a> <a href="c3ref/c_iocap_atomic.html">c3ref/c_iocap_atomic.html</a> <a href="c3ref/c_limit_attached.html">c3ref/c_limit_attached.html</a> <a href="c3ref/c_lock_exclusive.html">c3ref/c_lock_exclusive.html</a> <a href="c3ref/c_mutex_fast.html">c3ref/c_mutex_fast.html</a> <a href="c3ref/c_open_autoproxy.html">c3ref/c_open_autoproxy.html</a> <a href="c3ref/c_prepare_normalize.html">c3ref/c_prepare_normalize.html</a> <a href="c3ref/c_scanstat_complex.html">c3ref/c_scanstat_complex.html</a> <a href="c3ref/c_scanstat_est.html">c3ref/c_scanstat_est.html</a> <a href="c3ref/c_serialize_nocopy.html">c3ref/c_serialize_nocopy.html</a> <a href="c3ref/c_shm_exclusive.html">c3ref/c_shm_exclusive.html</a> <a href="c3ref/c_shm_nlock.html">c3ref/c_shm_nlock.html</a> <a href="c3ref/c_source_id.html">c3ref/c_source_id.html</a> <a href="c3ref/c_static.html">c3ref/c_static.html</a> <a href="c3ref/c_status_malloc_count.html">c3ref/c_status_malloc_count.html</a> <a href="c3ref/c_stmtstatus_counter.html">c3ref/c_stmtstatus_counter.html</a> <a href="c3ref/c_sync_dataonly.html">c3ref/c_sync_dataonly.html</a> <a href="c3ref/c_testctrl_always.html">c3ref/c_testctrl_always.html</a> <a href="c3ref/c_trace.html">c3ref/c_trace.html</a> <a href="c3ref/c_txn_none.html">c3ref/c_txn_none.html</a> <a href="c3ref/c_vtab_constraint_support.html">c3ref/c_vtab_constraint_support.html</a> <a href="c3ref/c_win32_data_directory_type.html">c3ref/c_win32_data_directory_type.html</a> <a href="c3ref/cancel_auto_extension.html">c3ref/cancel_auto_extension.html</a> <a href="c3ref/clear_bindings.html">c3ref/clear_bindings.html</a> <a href="c3ref/close.html">c3ref/close.html</a> <a href="c3ref/collation_needed.html">c3ref/collation_needed.html</a> <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> <a href="c3ref/column_count.html">c3ref/column_count.html</a> <a href="c3ref/column_database_name.html">c3ref/column_database_name.html</a> <a href="c3ref/column_decltype.html">c3ref/column_decltype.html</a> <a href="c3ref/column_name.html">c3ref/column_name.html</a> <a href="c3ref/commit_hook.html">c3ref/commit_hook.html</a> <a href="c3ref/compileoption_get.html">c3ref/compileoption_get.html</a> <a href="c3ref/complete.html">c3ref/complete.html</a> <a href="c3ref/config.html">c3ref/config.html</a> <a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/context.html">c3ref/context.html</a> <a href="c3ref/context_db_handle.html">c3ref/context_db_handle.html</a> <a href="c3ref/create_collation.html">c3ref/create_collation.html</a> <a href="c3ref/create_filename.html">c3ref/create_filename.html</a> <a href="c3ref/create_function.html">c3ref/create_function.html</a> <a href="c3ref/create_module.html">c3ref/create_module.html</a> <a href="c3ref/data_count.html">c3ref/data_count.html</a> <a href="c3ref/data_directory.html">c3ref/data_directory.html</a> <a href="c3ref/database_file_object.html">c3ref/database_file_object.html</a> <a href="c3ref/db_cacheflush.html">c3ref/db_cacheflush.html</a> <a href="c3ref/db_config.html">c3ref/db_config.html</a> <a href="c3ref/db_filename.html">c3ref/db_filename.html</a> <a href="c3ref/db_handle.html">c3ref/db_handle.html</a> <a href="c3ref/db_mutex.html">c3ref/db_mutex.html</a> <a href="c3ref/db_name.html">c3ref/db_name.html</a> <a href="c3ref/db_readonly.html">c3ref/db_readonly.html</a> <a href="c3ref/db_release_memory.html">c3ref/db_release_memory.html</a> <a href="c3ref/db_status.html">c3ref/db_status.html</a> <a href="c3ref/declare_vtab.html">c3ref/declare_vtab.html</a> <a href="c3ref/deserialize.html">c3ref/deserialize.html</a> <a href="c3ref/drop_modules.html">c3ref/drop_modules.html</a> <a href="c3ref/enable_load_extension.html">c3ref/enable_load_extension.html</a> <a href="c3ref/enable_shared_cache.html">c3ref/enable_shared_cache.html</a> <a href="c3ref/errcode.html">c3ref/errcode.html</a> <a href="c3ref/exec.html">c3ref/exec.html</a> <a href="c3ref/expanded_sql.html">c3ref/expanded_sql.html</a> <a href="c3ref/extended_result_codes.html">c3ref/extended_result_codes.html</a> <a href="c3ref/file.html">c3ref/file.html</a> <a href="c3ref/file_control.html">c3ref/file_control.html</a> <a href="c3ref/filename.html">c3ref/filename.html</a> <a href="c3ref/filename_database.html">c3ref/filename_database.html</a> <a href="c3ref/finalize.html">c3ref/finalize.html</a> <a href="c3ref/free.html">c3ref/free.html</a> <a href="c3ref/free_table.html">c3ref/free_table.html</a> <a href="c3ref/get_autocommit.html">c3ref/get_autocommit.html</a> <a href="c3ref/get_auxdata.html">c3ref/get_auxdata.html</a> <a href="c3ref/get_clientdata.html">c3ref/get_clientdata.html</a> <a href="c3ref/hard_heap_limit64.html">c3ref/hard_heap_limit64.html</a> <a href="c3ref/index_info.html">c3ref/index_info.html</a> <a href="c3ref/initialize.html">c3ref/initialize.html</a> <a href="c3ref/int64.html">c3ref/int64.html</a> <a href="c3ref/interrupt.html">c3ref/interrupt.html</a> <a href="c3ref/intro.html">c3ref/intro.html</a> <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> <a href="c3ref/keyword_check.html">c3ref/keyword_check.html</a> <a href="c3ref/last_insert_rowid.html">c3ref/last_insert_rowid.html</a> <a href="c3ref/libversion.html">c3ref/libversion.html</a> <a href="c3ref/limit.html">c3ref/limit.html</a> <a href="c3ref/load_extension.html">c3ref/load_extension.html</a> <a href="c3ref/log.html">c3ref/log.html</a> <a href="c3ref/mem_methods.html">c3ref/mem_methods.html</a> <a href="c3ref/memory_highwater.html">c3ref/memory_highwater.html</a> <a href="c3ref/module.html">c3ref/module.html</a> <a href="c3ref/mprintf.html">c3ref/mprintf.html</a> <a href="c3ref/mutex.html">c3ref/mutex.html</a> <a href="c3ref/mutex_alloc.html">c3ref/mutex_alloc.html</a> <a href="c3ref/mutex_held.html">c3ref/mutex_held.html</a> <a href="c3ref/mutex_methods.html">c3ref/mutex_methods.html</a> <a href="c3ref/next_stmt.html">c3ref/next_stmt.html</a> <a href="c3ref/objlist.html">c3ref/objlist.html</a> <a href="c3ref/open.html">c3ref/open.html</a> <a href="c3ref/overload_function.html">c3ref/overload_function.html</a> <a href="c3ref/pcache.html">c3ref/pcache.html</a> <a href="c3ref/pcache_methods2.html">c3ref/pcache_methods2.html</a> <a href="c3ref/pcache_page.html">c3ref/pcache_page.html</a> <a href="c3ref/prepare.html">c3ref/prepare.html</a> <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> <a href="c3ref/profile.html">c3ref/profile.html</a> <a href="c3ref/progress_handler.html">c3ref/progress_handler.html</a> <a href="c3ref/randomness.html">c3ref/randomness.html</a> <a href="c3ref/release_memory.html">c3ref/release_memory.html</a> <a href="c3ref/reset.html">c3ref/reset.html</a> <a href="c3ref/reset_auto_extension.html">c3ref/reset_auto_extension.html</a> <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> <a href="c3ref/result_subtype.html">c3ref/result_subtype.html</a> <a href="c3ref/serialize.html">c3ref/serialize.html</a> <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> <a href="c3ref/set_last_insert_rowid.html">c3ref/set_last_insert_rowid.html</a> <a href="c3ref/sleep.html">c3ref/sleep.html</a> <a href="c3ref/snapshot.html">c3ref/snapshot.html</a> <a href="c3ref/snapshot_cmp.html">c3ref/snapshot_cmp.html</a> <a href="c3ref/snapshot_free.html">c3ref/snapshot_free.html</a> <a href="c3ref/snapshot_get.html">c3ref/snapshot_get.html</a> <a href="c3ref/snapshot_open.html">c3ref/snapshot_open.html</a> <a href="c3ref/snapshot_recover.html">c3ref/snapshot_recover.html</a> <a href="c3ref/soft_heap_limit.html">c3ref/soft_heap_limit.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="c3ref/status.html">c3ref/status.html</a> <a href="c3ref/step.html">c3ref/step.html</a> <a href="c3ref/stmt.html">c3ref/stmt.html</a> <a href="c3ref/stmt_busy.html">c3ref/stmt_busy.html</a> <a href="c3ref/stmt_explain.html">c3ref/stmt_explain.html</a> <a href="c3ref/stmt_isexplain.html">c3ref/stmt_isexplain.html</a> <a href="c3ref/stmt_readonly.html">c3ref/stmt_readonly.html</a> <a href="c3ref/stmt_scanstatus.html">c3ref/stmt_scanstatus.html</a> <a href="c3ref/stmt_scanstatus_reset.html">c3ref/stmt_scanstatus_reset.html</a> <a href="c3ref/stmt_status.html">c3ref/stmt_status.html</a> <a href="c3ref/str.html">c3ref/str.html</a> <a href="c3ref/str_append.html">c3ref/str_append.html</a> <a href="c3ref/str_errcode.html">c3ref/str_errcode.html</a> <a href="c3ref/str_finish.html">c3ref/str_finish.html</a> <a href="c3ref/str_new.html">c3ref/str_new.html</a> <a href="c3ref/strglob.html">c3ref/strglob.html</a> <a href="c3ref/stricmp.html">c3ref/stricmp.html</a> <a href="c3ref/strlike.html">c3ref/strlike.html</a> <a href="c3ref/system_errno.html">c3ref/system_errno.html</a> <a href="c3ref/table_column_metadata.html">c3ref/table_column_metadata.html</a> <a href="c3ref/temp_directory.html">c3ref/temp_directory.html</a> <a href="c3ref/test_control.html">c3ref/test_control.html</a> <a href="c3ref/threadsafe.html">c3ref/threadsafe.html</a> <a href="c3ref/trace_v2.html">c3ref/trace_v2.html</a> <a href="c3ref/txn_state.html">c3ref/txn_state.html</a> <a href="c3ref/unlock_notify.html">c3ref/unlock_notify.html</a> <a href="c3ref/update_hook.html">c3ref/update_hook.html</a> <a href="c3ref/uri_boolean.html">c3ref/uri_boolean.html</a> <a href="c3ref/user_data.html">c3ref/user_data.html</a> <a href="c3ref/value.html">c3ref/value.html</a> <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> <a href="c3ref/value_dup.html">c3ref/value_dup.html</a> <a href="c3ref/value_encoding.html">c3ref/value_encoding.html</a> <a href="c3ref/value_subtype.html">c3ref/value_subtype.html</a> <a href="c3ref/vfs.html">c3ref/vfs.html</a> <a href="c3ref/vfs_find.html">c3ref/vfs_find.html</a> <a href="c3ref/vtab.html">c3ref/vtab.html</a> <a href="c3ref/vtab_collation.html">c3ref/vtab_collation.html</a> <a href="c3ref/vtab_config.html">c3ref/vtab_config.html</a> <a href="c3ref/vtab_cursor.html">c3ref/vtab_cursor.html</a> <a href="c3ref/vtab_distinct.html">c3ref/vtab_distinct.html</a> <a href="c3ref/vtab_in.html">c3ref/vtab_in.html</a> <a href="c3ref/vtab_in_first.html">c3ref/vtab_in_first.html</a> <a href="c3ref/vtab_nochange.html">c3ref/vtab_nochange.html</a> <a href="c3ref/vtab_on_conflict.html">c3ref/vtab_on_conflict.html</a> <a href="c3ref/vtab_rhs_value.html">c3ref/vtab_rhs_value.html</a> <a href="c3ref/wal_autocheckpoint.html">c3ref/wal_autocheckpoint.html</a> <a href="c3ref/wal_checkpoint.html">c3ref/wal_checkpoint.html</a> <a href="c3ref/wal_checkpoint_v2.html">c3ref/wal_checkpoint_v2.html</a> <a href="c3ref/wal_hook.html">c3ref/wal_hook.html</a> <a href="c3ref/win32_set_directory.html">c3ref/win32_set_directory.html</a> <a href="cintro.html">cintro.html</a> <a href="docs.html">docs.html</a> <a href="index.html">index.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/get_autocommit.html">c3ref/get_autocommit.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/snapshot_get.html">c3ref/snapshot_get.html</a> <a href="c3ref/snapshot_open.html">c3ref/snapshot_open.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="foreignkeys.html">foreignkeys.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_transaction.html">lang_transaction.html</a> </li>
<li><a href="c3ref/get_auxdata.html">c3ref/get_auxdata.html</a> &rarr; 
<a href="appfunc.html">appfunc.html</a> <a href="c3ref/context.html">c3ref/context.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/get_clientdata.html">c3ref/get_clientdata.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/get_clientdata.html">c3ref/get_clientdata.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/get_auxdata.html">c3ref/get_auxdata.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/hard_heap_limit64.html">c3ref/hard_heap_limit64.html</a> &rarr; 
<a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/soft_heap_limit.html">c3ref/soft_heap_limit.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="custombuild.html">custombuild.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="malloc.html">malloc.html</a> <a href="pragma.html">pragma.html</a> <a href="security.html">security.html</a> </li>
<li><a href="c3ref/index_info.html">c3ref/index_info.html</a> &rarr; 
<a href="c3ref/c_index_constraint_eq.html">c3ref/c_index_constraint_eq.html</a> <a href="c3ref/c_index_scan_unique.html">c3ref/c_index_scan_unique.html</a> <a href="c3ref/objlist.html">c3ref/objlist.html</a> <a href="c3ref/vtab_collation.html">c3ref/vtab_collation.html</a> <a href="c3ref/vtab_distinct.html">c3ref/vtab_distinct.html</a> <a href="c3ref/vtab_in.html">c3ref/vtab_in.html</a> <a href="c3ref/vtab_rhs_value.html">c3ref/vtab_rhs_value.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="c3ref/initialize.html">c3ref/initialize.html</a> &rarr; 
<a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/complete.html">c3ref/complete.html</a> <a href="c3ref/config.html">c3ref/config.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/mem_methods.html">c3ref/mem_methods.html</a> <a href="c3ref/mutex_methods.html">c3ref/mutex_methods.html</a> <a href="c3ref/pcache_methods2.html">c3ref/pcache_methods2.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="custombuild.html">custombuild.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="loadext.html">loadext.html</a> </li>
<li><a href="c3ref/int64.html">c3ref/int64.html</a> &rarr; 
<a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/c_fcntl_begin_atomic_write.html">c3ref/c_fcntl_begin_atomic_write.html</a> <a href="c3ref/c_scanstat_est.html">c3ref/c_scanstat_est.html</a> <a href="c3ref/objlist.html">c3ref/objlist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="windowfunctions.html">windowfunctions.html</a> </li>
<li><a href="c3ref/interrupt.html">c3ref/interrupt.html</a> &rarr; 
<a href="arch.html">arch.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="pragma.html">pragma.html</a> <a href="rescode.html">rescode.html</a> <a href="security.html">security.html</a> <a href="tclsqlite.html">tclsqlite.html</a> </li>
<li><a href="c3ref/intro.html">c3ref/intro.html</a> &rarr; 
<a href="about.html">about.html</a> <a href="arch.html">arch.html</a> <a href="c3ref/aggregate_context.html">c3ref/aggregate_context.html</a> <a href="c3ref/aggregate_count.html">c3ref/aggregate_count.html</a> <a href="c3ref/api_routines.html">c3ref/api_routines.html</a> <a href="c3ref/auto_extension.html">c3ref/auto_extension.html</a> <a href="c3ref/autovacuum_pages.html">c3ref/autovacuum_pages.html</a> <a href="c3ref/backup.html">c3ref/backup.html</a> <a href="c3ref/backup_finish.html">c3ref/backup_finish.html</a> <a href="c3ref/bind_blob.html">c3ref/bind_blob.html</a> <a href="c3ref/bind_parameter_count.html">c3ref/bind_parameter_count.html</a> <a href="c3ref/bind_parameter_index.html">c3ref/bind_parameter_index.html</a> <a href="c3ref/bind_parameter_name.html">c3ref/bind_parameter_name.html</a> <a href="c3ref/blob.html">c3ref/blob.html</a> <a href="c3ref/blob_bytes.html">c3ref/blob_bytes.html</a> <a href="c3ref/blob_close.html">c3ref/blob_close.html</a> <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> <a href="c3ref/blob_read.html">c3ref/blob_read.html</a> <a href="c3ref/blob_reopen.html">c3ref/blob_reopen.html</a> <a href="c3ref/blob_write.html">c3ref/blob_write.html</a> <a href="c3ref/busy_handler.html">c3ref/busy_handler.html</a> <a href="c3ref/busy_timeout.html">c3ref/busy_timeout.html</a> <a href="c3ref/c_abort.html">c3ref/c_abort.html</a> <a href="c3ref/c_abort_rollback.html">c3ref/c_abort_rollback.html</a> <a href="c3ref/c_access_exists.html">c3ref/c_access_exists.html</a> <a href="c3ref/c_alter_table.html">c3ref/c_alter_table.html</a> <a href="c3ref/c_any.html">c3ref/c_any.html</a> <a href="c3ref/c_blob.html">c3ref/c_blob.html</a> <a href="c3ref/c_checkpoint_full.html">c3ref/c_checkpoint_full.html</a> <a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> <a href="c3ref/c_dbstatus_options.html">c3ref/c_dbstatus_options.html</a> <a href="c3ref/c_deny.html">c3ref/c_deny.html</a> <a href="c3ref/c_deserialize_freeonclose.html">c3ref/c_deserialize_freeonclose.html</a> <a href="c3ref/c_deterministic.html">c3ref/c_deterministic.html</a> <a href="c3ref/c_fail.html">c3ref/c_fail.html</a> <a href="c3ref/c_fcntl_begin_atomic_write.html">c3ref/c_fcntl_begin_atomic_write.html</a> <a href="c3ref/c_index_constraint_eq.html">c3ref/c_index_constraint_eq.html</a> <a href="c3ref/c_index_scan_unique.html">c3ref/c_index_scan_unique.html</a> <a href="c3ref/c_iocap_atomic.html">c3ref/c_iocap_atomic.html</a> <a href="c3ref/c_limit_attached.html">c3ref/c_limit_attached.html</a> <a href="c3ref/c_lock_exclusive.html">c3ref/c_lock_exclusive.html</a> <a href="c3ref/c_mutex_fast.html">c3ref/c_mutex_fast.html</a> <a href="c3ref/c_open_autoproxy.html">c3ref/c_open_autoproxy.html</a> <a href="c3ref/c_prepare_normalize.html">c3ref/c_prepare_normalize.html</a> <a href="c3ref/c_scanstat_complex.html">c3ref/c_scanstat_complex.html</a> <a href="c3ref/c_scanstat_est.html">c3ref/c_scanstat_est.html</a> <a href="c3ref/c_serialize_nocopy.html">c3ref/c_serialize_nocopy.html</a> <a href="c3ref/c_shm_exclusive.html">c3ref/c_shm_exclusive.html</a> <a href="c3ref/c_shm_nlock.html">c3ref/c_shm_nlock.html</a> <a href="c3ref/c_source_id.html">c3ref/c_source_id.html</a> <a href="c3ref/c_static.html">c3ref/c_static.html</a> <a href="c3ref/c_status_malloc_count.html">c3ref/c_status_malloc_count.html</a> <a href="c3ref/c_stmtstatus_counter.html">c3ref/c_stmtstatus_counter.html</a> <a href="c3ref/c_sync_dataonly.html">c3ref/c_sync_dataonly.html</a> <a href="c3ref/c_testctrl_always.html">c3ref/c_testctrl_always.html</a> <a href="c3ref/c_trace.html">c3ref/c_trace.html</a> <a href="c3ref/c_txn_none.html">c3ref/c_txn_none.html</a> <a href="c3ref/c_vtab_constraint_support.html">c3ref/c_vtab_constraint_support.html</a> <a href="c3ref/c_win32_data_directory_type.html">c3ref/c_win32_data_directory_type.html</a> <a href="c3ref/cancel_auto_extension.html">c3ref/cancel_auto_extension.html</a> <a href="c3ref/clear_bindings.html">c3ref/clear_bindings.html</a> <a href="c3ref/close.html">c3ref/close.html</a> <a href="c3ref/collation_needed.html">c3ref/collation_needed.html</a> <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> <a href="c3ref/column_count.html">c3ref/column_count.html</a> <a href="c3ref/column_database_name.html">c3ref/column_database_name.html</a> <a href="c3ref/column_decltype.html">c3ref/column_decltype.html</a> <a href="c3ref/column_name.html">c3ref/column_name.html</a> <a href="c3ref/commit_hook.html">c3ref/commit_hook.html</a> <a href="c3ref/compileoption_get.html">c3ref/compileoption_get.html</a> <a href="c3ref/complete.html">c3ref/complete.html</a> <a href="c3ref/config.html">c3ref/config.html</a> <a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/context.html">c3ref/context.html</a> <a href="c3ref/context_db_handle.html">c3ref/context_db_handle.html</a> <a href="c3ref/create_collation.html">c3ref/create_collation.html</a> <a href="c3ref/create_filename.html">c3ref/create_filename.html</a> <a href="c3ref/create_function.html">c3ref/create_function.html</a> <a href="c3ref/create_module.html">c3ref/create_module.html</a> <a href="c3ref/data_count.html">c3ref/data_count.html</a> <a href="c3ref/data_directory.html">c3ref/data_directory.html</a> <a href="c3ref/database_file_object.html">c3ref/database_file_object.html</a> <a href="c3ref/db_cacheflush.html">c3ref/db_cacheflush.html</a> <a href="c3ref/db_config.html">c3ref/db_config.html</a> <a href="c3ref/db_filename.html">c3ref/db_filename.html</a> <a href="c3ref/db_handle.html">c3ref/db_handle.html</a> <a href="c3ref/db_mutex.html">c3ref/db_mutex.html</a> <a href="c3ref/db_name.html">c3ref/db_name.html</a> <a href="c3ref/db_readonly.html">c3ref/db_readonly.html</a> <a href="c3ref/db_release_memory.html">c3ref/db_release_memory.html</a> <a href="c3ref/db_status.html">c3ref/db_status.html</a> <a href="c3ref/declare_vtab.html">c3ref/declare_vtab.html</a> <a href="c3ref/deserialize.html">c3ref/deserialize.html</a> <a href="c3ref/drop_modules.html">c3ref/drop_modules.html</a> <a href="c3ref/enable_load_extension.html">c3ref/enable_load_extension.html</a> <a href="c3ref/enable_shared_cache.html">c3ref/enable_shared_cache.html</a> <a href="c3ref/errcode.html">c3ref/errcode.html</a> <a href="c3ref/exec.html">c3ref/exec.html</a> <a href="c3ref/expanded_sql.html">c3ref/expanded_sql.html</a> <a href="c3ref/experimental.html">c3ref/experimental.html</a> <a href="c3ref/extended_result_codes.html">c3ref/extended_result_codes.html</a> <a href="c3ref/file.html">c3ref/file.html</a> <a href="c3ref/file_control.html">c3ref/file_control.html</a> <a href="c3ref/filename.html">c3ref/filename.html</a> <a href="c3ref/filename_database.html">c3ref/filename_database.html</a> <a href="c3ref/finalize.html">c3ref/finalize.html</a> <a href="c3ref/free.html">c3ref/free.html</a> <a href="c3ref/free_table.html">c3ref/free_table.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/get_autocommit.html">c3ref/get_autocommit.html</a> <a href="c3ref/get_auxdata.html">c3ref/get_auxdata.html</a> <a href="c3ref/get_clientdata.html">c3ref/get_clientdata.html</a> <a href="c3ref/hard_heap_limit64.html">c3ref/hard_heap_limit64.html</a> <a href="c3ref/index_info.html">c3ref/index_info.html</a> <a href="c3ref/initialize.html">c3ref/initialize.html</a> <a href="c3ref/int64.html">c3ref/int64.html</a> <a href="c3ref/interrupt.html">c3ref/interrupt.html</a> <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> <a href="c3ref/keyword_check.html">c3ref/keyword_check.html</a> <a href="c3ref/last_insert_rowid.html">c3ref/last_insert_rowid.html</a> <a href="c3ref/libversion.html">c3ref/libversion.html</a> <a href="c3ref/limit.html">c3ref/limit.html</a> <a href="c3ref/load_extension.html">c3ref/load_extension.html</a> <a href="c3ref/log.html">c3ref/log.html</a> <a href="c3ref/mem_methods.html">c3ref/mem_methods.html</a> <a href="c3ref/memory_highwater.html">c3ref/memory_highwater.html</a> <a href="c3ref/module.html">c3ref/module.html</a> <a href="c3ref/mprintf.html">c3ref/mprintf.html</a> <a href="c3ref/mutex.html">c3ref/mutex.html</a> <a href="c3ref/mutex_alloc.html">c3ref/mutex_alloc.html</a> <a href="c3ref/mutex_held.html">c3ref/mutex_held.html</a> <a href="c3ref/mutex_methods.html">c3ref/mutex_methods.html</a> <a href="c3ref/next_stmt.html">c3ref/next_stmt.html</a> <a href="c3ref/objlist.html">c3ref/objlist.html</a> <a href="c3ref/open.html">c3ref/open.html</a> <a href="c3ref/overload_function.html">c3ref/overload_function.html</a> <a href="c3ref/pcache.html">c3ref/pcache.html</a> <a href="c3ref/pcache_methods2.html">c3ref/pcache_methods2.html</a> <a href="c3ref/pcache_page.html">c3ref/pcache_page.html</a> <a href="c3ref/prepare.html">c3ref/prepare.html</a> <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> <a href="c3ref/profile.html">c3ref/profile.html</a> <a href="c3ref/progress_handler.html">c3ref/progress_handler.html</a> <a href="c3ref/randomness.html">c3ref/randomness.html</a> <a href="c3ref/release_memory.html">c3ref/release_memory.html</a> <a href="c3ref/reset.html">c3ref/reset.html</a> <a href="c3ref/reset_auto_extension.html">c3ref/reset_auto_extension.html</a> <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> <a href="c3ref/result_subtype.html">c3ref/result_subtype.html</a> <a href="c3ref/serialize.html">c3ref/serialize.html</a> <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> <a href="c3ref/set_last_insert_rowid.html">c3ref/set_last_insert_rowid.html</a> <a href="c3ref/sleep.html">c3ref/sleep.html</a> <a href="c3ref/snapshot.html">c3ref/snapshot.html</a> <a href="c3ref/snapshot_cmp.html">c3ref/snapshot_cmp.html</a> <a href="c3ref/snapshot_free.html">c3ref/snapshot_free.html</a> <a href="c3ref/snapshot_get.html">c3ref/snapshot_get.html</a> <a href="c3ref/snapshot_open.html">c3ref/snapshot_open.html</a> <a href="c3ref/snapshot_recover.html">c3ref/snapshot_recover.html</a> <a href="c3ref/soft_heap_limit.html">c3ref/soft_heap_limit.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="c3ref/status.html">c3ref/status.html</a> <a href="c3ref/step.html">c3ref/step.html</a> <a href="c3ref/stmt.html">c3ref/stmt.html</a> <a href="c3ref/stmt_busy.html">c3ref/stmt_busy.html</a> <a href="c3ref/stmt_explain.html">c3ref/stmt_explain.html</a> <a href="c3ref/stmt_isexplain.html">c3ref/stmt_isexplain.html</a> <a href="c3ref/stmt_readonly.html">c3ref/stmt_readonly.html</a> <a href="c3ref/stmt_scanstatus.html">c3ref/stmt_scanstatus.html</a> <a href="c3ref/stmt_scanstatus_reset.html">c3ref/stmt_scanstatus_reset.html</a> <a href="c3ref/stmt_status.html">c3ref/stmt_status.html</a> <a href="c3ref/str.html">c3ref/str.html</a> <a href="c3ref/str_append.html">c3ref/str_append.html</a> <a href="c3ref/str_errcode.html">c3ref/str_errcode.html</a> <a href="c3ref/str_finish.html">c3ref/str_finish.html</a> <a href="c3ref/str_new.html">c3ref/str_new.html</a> <a href="c3ref/strglob.html">c3ref/strglob.html</a> <a href="c3ref/stricmp.html">c3ref/stricmp.html</a> <a href="c3ref/strlike.html">c3ref/strlike.html</a> <a href="c3ref/system_errno.html">c3ref/system_errno.html</a> <a href="c3ref/table_column_metadata.html">c3ref/table_column_metadata.html</a> <a href="c3ref/temp_directory.html">c3ref/temp_directory.html</a> <a href="c3ref/test_control.html">c3ref/test_control.html</a> <a href="c3ref/threadsafe.html">c3ref/threadsafe.html</a> <a href="c3ref/trace_v2.html">c3ref/trace_v2.html</a> <a href="c3ref/txn_state.html">c3ref/txn_state.html</a> <a href="c3ref/unlock_notify.html">c3ref/unlock_notify.html</a> <a href="c3ref/update_hook.html">c3ref/update_hook.html</a> <a href="c3ref/uri_boolean.html">c3ref/uri_boolean.html</a> <a href="c3ref/user_data.html">c3ref/user_data.html</a> <a href="c3ref/value.html">c3ref/value.html</a> <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> <a href="c3ref/value_dup.html">c3ref/value_dup.html</a> <a href="c3ref/value_encoding.html">c3ref/value_encoding.html</a> <a href="c3ref/value_subtype.html">c3ref/value_subtype.html</a> <a href="c3ref/vfs.html">c3ref/vfs.html</a> <a href="c3ref/vfs_find.html">c3ref/vfs_find.html</a> <a href="c3ref/vtab.html">c3ref/vtab.html</a> <a href="c3ref/vtab_collation.html">c3ref/vtab_collation.html</a> <a href="c3ref/vtab_config.html">c3ref/vtab_config.html</a> <a href="c3ref/vtab_cursor.html">c3ref/vtab_cursor.html</a> <a href="c3ref/vtab_distinct.html">c3ref/vtab_distinct.html</a> <a href="c3ref/vtab_in.html">c3ref/vtab_in.html</a> <a href="c3ref/vtab_in_first.html">c3ref/vtab_in_first.html</a> <a href="c3ref/vtab_nochange.html">c3ref/vtab_nochange.html</a> <a href="c3ref/vtab_on_conflict.html">c3ref/vtab_on_conflict.html</a> <a href="c3ref/vtab_rhs_value.html">c3ref/vtab_rhs_value.html</a> <a href="c3ref/wal_autocheckpoint.html">c3ref/wal_autocheckpoint.html</a> <a href="c3ref/wal_checkpoint.html">c3ref/wal_checkpoint.html</a> <a href="c3ref/wal_checkpoint_v2.html">c3ref/wal_checkpoint_v2.html</a> <a href="c3ref/wal_hook.html">c3ref/wal_hook.html</a> <a href="c3ref/win32_set_directory.html">c3ref/win32_set_directory.html</a> <a href="capi3.html">capi3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cintro.html">cintro.html</a> <a href="docs.html">docs.html</a> <a href="index.html">index.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="quickstart.html">quickstart.html</a> <a href="rescode.html">rescode.html</a> </li>
<li><a href="c3ref/io_methods.html">c3ref/io_methods.html</a> &rarr; 
<a href="c3ref/c_fcntl_begin_atomic_write.html">c3ref/c_fcntl_begin_atomic_write.html</a> <a href="c3ref/c_iocap_atomic.html">c3ref/c_iocap_atomic.html</a> <a href="c3ref/c_lock_exclusive.html">c3ref/c_lock_exclusive.html</a> <a href="c3ref/c_shm_exclusive.html">c3ref/c_shm_exclusive.html</a> <a href="c3ref/c_shm_nlock.html">c3ref/c_shm_nlock.html</a> <a href="c3ref/c_sync_dataonly.html">c3ref/c_sync_dataonly.html</a> <a href="c3ref/file.html">c3ref/file.html</a> <a href="c3ref/file_control.html">c3ref/file_control.html</a> <a href="c3ref/objlist.html">c3ref/objlist.html</a> <a href="c3ref/vfs.html">c3ref/vfs.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="fileformat2.html">fileformat2.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="mmap.html">mmap.html</a> <a href="rescode.html">rescode.html</a> <a href="vfs.html">vfs.html</a> <a href="wal.html">wal.html</a> <a href="walformat.html">walformat.html</a> </li>
<li><a href="c3ref/keyword_check.html">c3ref/keyword_check.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_keywords.html">lang_keywords.html</a> </li>
<li><a href="c3ref/last_insert_rowid.html">c3ref/last_insert_rowid.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="faq.html">faq.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_corefunc.html">lang_corefunc.html</a> <a href="vtab.html">vtab.html</a> <a href="withoutrowid.html">withoutrowid.html</a> </li>
<li><a href="c3ref/libversion.html">c3ref/libversion.html</a> &rarr; 
<a href="c3ref/c_source_id.html">c3ref/c_source_id.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/index_info.html">c3ref/index_info.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="deterministic.html">deterministic.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_corefunc.html">lang_corefunc.html</a> <a href="th3.html">th3.html</a> <a href="versionnumbers.html">versionnumbers.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="c3ref/limit.html">c3ref/limit.html</a> &rarr; 
<a href="c3ref/bind_blob.html">c3ref/bind_blob.html</a> <a href="c3ref/c_limit_attached.html">c3ref/c_limit_attached.html</a> <a href="c3ref/create_function.html">c3ref/create_function.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="c3ref/str_new.html">c3ref/str_new.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cintro.html">cintro.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_attach.html">lang_attach.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="limits.html">limits.html</a> <a href="pragma.html">pragma.html</a> <a href="privatebranch.html">privatebranch.html</a> <a href="rescode.html">rescode.html</a> <a href="security.html">security.html</a> </li>
<li><a href="c3ref/load_extension.html">c3ref/load_extension.html</a> &rarr; 
<a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> <a href="c3ref/enable_load_extension.html">c3ref/enable_load_extension.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cksumvfs.html">cksumvfs.html</a> <a href="compile.html">compile.html</a> <a href="csv.html">csv.html</a> <a href="howtocompile.html">howtocompile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_corefunc.html">lang_corefunc.html</a> <a href="loadext.html">loadext.html</a> <a href="rescode.html">rescode.html</a> </li>
<li><a href="c3ref/log.html">c3ref/log.html</a> &rarr; 
<a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="errlog.html">errlog.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="rescode.html">rescode.html</a> </li>
<li><a href="c3ref/mem_methods.html">c3ref/mem_methods.html</a> &rarr; 
<a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/c_status_malloc_count.html">c3ref/c_status_malloc_count.html</a> <a href="c3ref/objlist.html">c3ref/objlist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="custombuild.html">custombuild.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="malloc.html">malloc.html</a> </li>
<li><a href="c3ref/memory_highwater.html">c3ref/memory_highwater.html</a> &rarr; 
<a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="custombuild.html">custombuild.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="security.html">security.html</a> </li>
<li><a href="c3ref/module.html">c3ref/module.html</a> &rarr; 
<a href="c3ref/create_module.html">c3ref/create_module.html</a> <a href="c3ref/declare_vtab.html">c3ref/declare_vtab.html</a> <a href="c3ref/index_info.html">c3ref/index_info.html</a> <a href="c3ref/objlist.html">c3ref/objlist.html</a> <a href="c3ref/overload_function.html">c3ref/overload_function.html</a> <a href="c3ref/vtab.html">c3ref/vtab.html</a> <a href="c3ref/vtab_cursor.html">c3ref/vtab_cursor.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="fts5.html">fts5.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="c3ref/mprintf.html">c3ref/mprintf.html</a> &rarr; 
<a href="arch.html">arch.html</a> <a href="c3ref/auto_extension.html">c3ref/auto_extension.html</a> <a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/c_fcntl_begin_atomic_write.html">c3ref/c_fcntl_begin_atomic_write.html</a> <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/log.html">c3ref/log.html</a> <a href="c3ref/vtab.html">c3ref/vtab.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_corefunc.html">lang_corefunc.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="printf.html">printf.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="c3ref/mutex.html">c3ref/mutex.html</a> &rarr; 
<a href="c3ref/db_mutex.html">c3ref/db_mutex.html</a> <a href="c3ref/objlist.html">c3ref/objlist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/mutex_alloc.html">c3ref/mutex_alloc.html</a> &rarr; 
<a href="c3ref/c_mutex_fast.html">c3ref/c_mutex_fast.html</a> <a href="c3ref/errcode.html">c3ref/errcode.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/mutex.html">c3ref/mutex.html</a> <a href="c3ref/mutex_methods.html">c3ref/mutex_methods.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="custombuild.html">custombuild.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/mutex_held.html">c3ref/mutex_held.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/mutex_alloc.html">c3ref/mutex_alloc.html</a> <a href="c3ref/mutex_methods.html">c3ref/mutex_methods.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="testing.html">testing.html</a> </li>
<li><a href="c3ref/mutex_methods.html">c3ref/mutex_methods.html</a> &rarr; 
<a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/objlist.html">c3ref/objlist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/next_stmt.html">c3ref/next_stmt.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="c3ref/stmt_busy.html">c3ref/stmt_busy.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/objlist.html">c3ref/objlist.html</a> &rarr; 
<a href="c3ref/aggregate_context.html">c3ref/aggregate_context.html</a> <a href="c3ref/aggregate_count.html">c3ref/aggregate_count.html</a> <a href="c3ref/api_routines.html">c3ref/api_routines.html</a> <a href="c3ref/auto_extension.html">c3ref/auto_extension.html</a> <a href="c3ref/autovacuum_pages.html">c3ref/autovacuum_pages.html</a> <a href="c3ref/backup.html">c3ref/backup.html</a> <a href="c3ref/backup_finish.html">c3ref/backup_finish.html</a> <a href="c3ref/bind_blob.html">c3ref/bind_blob.html</a> <a href="c3ref/bind_parameter_count.html">c3ref/bind_parameter_count.html</a> <a href="c3ref/bind_parameter_index.html">c3ref/bind_parameter_index.html</a> <a href="c3ref/bind_parameter_name.html">c3ref/bind_parameter_name.html</a> <a href="c3ref/blob.html">c3ref/blob.html</a> <a href="c3ref/blob_bytes.html">c3ref/blob_bytes.html</a> <a href="c3ref/blob_close.html">c3ref/blob_close.html</a> <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> <a href="c3ref/blob_read.html">c3ref/blob_read.html</a> <a href="c3ref/blob_reopen.html">c3ref/blob_reopen.html</a> <a href="c3ref/blob_write.html">c3ref/blob_write.html</a> <a href="c3ref/busy_handler.html">c3ref/busy_handler.html</a> <a href="c3ref/busy_timeout.html">c3ref/busy_timeout.html</a> <a href="c3ref/c_abort.html">c3ref/c_abort.html</a> <a href="c3ref/c_abort_rollback.html">c3ref/c_abort_rollback.html</a> <a href="c3ref/c_access_exists.html">c3ref/c_access_exists.html</a> <a href="c3ref/c_alter_table.html">c3ref/c_alter_table.html</a> <a href="c3ref/c_any.html">c3ref/c_any.html</a> <a href="c3ref/c_blob.html">c3ref/c_blob.html</a> <a href="c3ref/c_checkpoint_full.html">c3ref/c_checkpoint_full.html</a> <a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> <a href="c3ref/c_dbstatus_options.html">c3ref/c_dbstatus_options.html</a> <a href="c3ref/c_deny.html">c3ref/c_deny.html</a> <a href="c3ref/c_deserialize_freeonclose.html">c3ref/c_deserialize_freeonclose.html</a> <a href="c3ref/c_deterministic.html">c3ref/c_deterministic.html</a> <a href="c3ref/c_fail.html">c3ref/c_fail.html</a> <a href="c3ref/c_fcntl_begin_atomic_write.html">c3ref/c_fcntl_begin_atomic_write.html</a> <a href="c3ref/c_index_constraint_eq.html">c3ref/c_index_constraint_eq.html</a> <a href="c3ref/c_index_scan_unique.html">c3ref/c_index_scan_unique.html</a> <a href="c3ref/c_iocap_atomic.html">c3ref/c_iocap_atomic.html</a> <a href="c3ref/c_limit_attached.html">c3ref/c_limit_attached.html</a> <a href="c3ref/c_lock_exclusive.html">c3ref/c_lock_exclusive.html</a> <a href="c3ref/c_mutex_fast.html">c3ref/c_mutex_fast.html</a> <a href="c3ref/c_open_autoproxy.html">c3ref/c_open_autoproxy.html</a> <a href="c3ref/c_prepare_normalize.html">c3ref/c_prepare_normalize.html</a> <a href="c3ref/c_scanstat_complex.html">c3ref/c_scanstat_complex.html</a> <a href="c3ref/c_scanstat_est.html">c3ref/c_scanstat_est.html</a> <a href="c3ref/c_serialize_nocopy.html">c3ref/c_serialize_nocopy.html</a> <a href="c3ref/c_shm_exclusive.html">c3ref/c_shm_exclusive.html</a> <a href="c3ref/c_shm_nlock.html">c3ref/c_shm_nlock.html</a> <a href="c3ref/c_source_id.html">c3ref/c_source_id.html</a> <a href="c3ref/c_static.html">c3ref/c_static.html</a> <a href="c3ref/c_status_malloc_count.html">c3ref/c_status_malloc_count.html</a> <a href="c3ref/c_stmtstatus_counter.html">c3ref/c_stmtstatus_counter.html</a> <a href="c3ref/c_sync_dataonly.html">c3ref/c_sync_dataonly.html</a> <a href="c3ref/c_testctrl_always.html">c3ref/c_testctrl_always.html</a> <a href="c3ref/c_trace.html">c3ref/c_trace.html</a> <a href="c3ref/c_txn_none.html">c3ref/c_txn_none.html</a> <a href="c3ref/c_vtab_constraint_support.html">c3ref/c_vtab_constraint_support.html</a> <a href="c3ref/c_win32_data_directory_type.html">c3ref/c_win32_data_directory_type.html</a> <a href="c3ref/cancel_auto_extension.html">c3ref/cancel_auto_extension.html</a> <a href="c3ref/clear_bindings.html">c3ref/clear_bindings.html</a> <a href="c3ref/close.html">c3ref/close.html</a> <a href="c3ref/collation_needed.html">c3ref/collation_needed.html</a> <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> <a href="c3ref/column_count.html">c3ref/column_count.html</a> <a href="c3ref/column_database_name.html">c3ref/column_database_name.html</a> <a href="c3ref/column_decltype.html">c3ref/column_decltype.html</a> <a href="c3ref/column_name.html">c3ref/column_name.html</a> <a href="c3ref/commit_hook.html">c3ref/commit_hook.html</a> <a href="c3ref/compileoption_get.html">c3ref/compileoption_get.html</a> <a href="c3ref/complete.html">c3ref/complete.html</a> <a href="c3ref/config.html">c3ref/config.html</a> <a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/context.html">c3ref/context.html</a> <a href="c3ref/context_db_handle.html">c3ref/context_db_handle.html</a> <a href="c3ref/create_collation.html">c3ref/create_collation.html</a> <a href="c3ref/create_filename.html">c3ref/create_filename.html</a> <a href="c3ref/create_function.html">c3ref/create_function.html</a> <a href="c3ref/create_module.html">c3ref/create_module.html</a> <a href="c3ref/data_count.html">c3ref/data_count.html</a> <a href="c3ref/data_directory.html">c3ref/data_directory.html</a> <a href="c3ref/database_file_object.html">c3ref/database_file_object.html</a> <a href="c3ref/db_cacheflush.html">c3ref/db_cacheflush.html</a> <a href="c3ref/db_config.html">c3ref/db_config.html</a> <a href="c3ref/db_filename.html">c3ref/db_filename.html</a> <a href="c3ref/db_handle.html">c3ref/db_handle.html</a> <a href="c3ref/db_mutex.html">c3ref/db_mutex.html</a> <a href="c3ref/db_name.html">c3ref/db_name.html</a> <a href="c3ref/db_readonly.html">c3ref/db_readonly.html</a> <a href="c3ref/db_release_memory.html">c3ref/db_release_memory.html</a> <a href="c3ref/db_status.html">c3ref/db_status.html</a> <a href="c3ref/declare_vtab.html">c3ref/declare_vtab.html</a> <a href="c3ref/deserialize.html">c3ref/deserialize.html</a> <a href="c3ref/drop_modules.html">c3ref/drop_modules.html</a> <a href="c3ref/enable_load_extension.html">c3ref/enable_load_extension.html</a> <a href="c3ref/enable_shared_cache.html">c3ref/enable_shared_cache.html</a> <a href="c3ref/errcode.html">c3ref/errcode.html</a> <a href="c3ref/exec.html">c3ref/exec.html</a> <a href="c3ref/expanded_sql.html">c3ref/expanded_sql.html</a> <a href="c3ref/extended_result_codes.html">c3ref/extended_result_codes.html</a> <a href="c3ref/file.html">c3ref/file.html</a> <a href="c3ref/file_control.html">c3ref/file_control.html</a> <a href="c3ref/filename.html">c3ref/filename.html</a> <a href="c3ref/filename_database.html">c3ref/filename_database.html</a> <a href="c3ref/finalize.html">c3ref/finalize.html</a> <a href="c3ref/free.html">c3ref/free.html</a> <a href="c3ref/free_table.html">c3ref/free_table.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/get_autocommit.html">c3ref/get_autocommit.html</a> <a href="c3ref/get_auxdata.html">c3ref/get_auxdata.html</a> <a href="c3ref/get_clientdata.html">c3ref/get_clientdata.html</a> <a href="c3ref/hard_heap_limit64.html">c3ref/hard_heap_limit64.html</a> <a href="c3ref/index_info.html">c3ref/index_info.html</a> <a href="c3ref/initialize.html">c3ref/initialize.html</a> <a href="c3ref/int64.html">c3ref/int64.html</a> <a href="c3ref/interrupt.html">c3ref/interrupt.html</a> <a href="c3ref/intro.html">c3ref/intro.html</a> <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> <a href="c3ref/keyword_check.html">c3ref/keyword_check.html</a> <a href="c3ref/last_insert_rowid.html">c3ref/last_insert_rowid.html</a> <a href="c3ref/libversion.html">c3ref/libversion.html</a> <a href="c3ref/limit.html">c3ref/limit.html</a> <a href="c3ref/load_extension.html">c3ref/load_extension.html</a> <a href="c3ref/log.html">c3ref/log.html</a> <a href="c3ref/mem_methods.html">c3ref/mem_methods.html</a> <a href="c3ref/memory_highwater.html">c3ref/memory_highwater.html</a> <a href="c3ref/module.html">c3ref/module.html</a> <a href="c3ref/mprintf.html">c3ref/mprintf.html</a> <a href="c3ref/mutex.html">c3ref/mutex.html</a> <a href="c3ref/mutex_alloc.html">c3ref/mutex_alloc.html</a> <a href="c3ref/mutex_held.html">c3ref/mutex_held.html</a> <a href="c3ref/mutex_methods.html">c3ref/mutex_methods.html</a> <a href="c3ref/next_stmt.html">c3ref/next_stmt.html</a> <a href="c3ref/open.html">c3ref/open.html</a> <a href="c3ref/overload_function.html">c3ref/overload_function.html</a> <a href="c3ref/pcache.html">c3ref/pcache.html</a> <a href="c3ref/pcache_methods2.html">c3ref/pcache_methods2.html</a> <a href="c3ref/pcache_page.html">c3ref/pcache_page.html</a> <a href="c3ref/prepare.html">c3ref/prepare.html</a> <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> <a href="c3ref/profile.html">c3ref/profile.html</a> <a href="c3ref/progress_handler.html">c3ref/progress_handler.html</a> <a href="c3ref/randomness.html">c3ref/randomness.html</a> <a href="c3ref/release_memory.html">c3ref/release_memory.html</a> <a href="c3ref/reset.html">c3ref/reset.html</a> <a href="c3ref/reset_auto_extension.html">c3ref/reset_auto_extension.html</a> <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> <a href="c3ref/result_subtype.html">c3ref/result_subtype.html</a> <a href="c3ref/serialize.html">c3ref/serialize.html</a> <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> <a href="c3ref/set_last_insert_rowid.html">c3ref/set_last_insert_rowid.html</a> <a href="c3ref/sleep.html">c3ref/sleep.html</a> <a href="c3ref/snapshot.html">c3ref/snapshot.html</a> <a href="c3ref/snapshot_cmp.html">c3ref/snapshot_cmp.html</a> <a href="c3ref/snapshot_free.html">c3ref/snapshot_free.html</a> <a href="c3ref/snapshot_get.html">c3ref/snapshot_get.html</a> <a href="c3ref/snapshot_open.html">c3ref/snapshot_open.html</a> <a href="c3ref/snapshot_recover.html">c3ref/snapshot_recover.html</a> <a href="c3ref/soft_heap_limit.html">c3ref/soft_heap_limit.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="c3ref/status.html">c3ref/status.html</a> <a href="c3ref/step.html">c3ref/step.html</a> <a href="c3ref/stmt.html">c3ref/stmt.html</a> <a href="c3ref/stmt_busy.html">c3ref/stmt_busy.html</a> <a href="c3ref/stmt_explain.html">c3ref/stmt_explain.html</a> <a href="c3ref/stmt_isexplain.html">c3ref/stmt_isexplain.html</a> <a href="c3ref/stmt_readonly.html">c3ref/stmt_readonly.html</a> <a href="c3ref/stmt_scanstatus.html">c3ref/stmt_scanstatus.html</a> <a href="c3ref/stmt_scanstatus_reset.html">c3ref/stmt_scanstatus_reset.html</a> <a href="c3ref/stmt_status.html">c3ref/stmt_status.html</a> <a href="c3ref/str.html">c3ref/str.html</a> <a href="c3ref/str_append.html">c3ref/str_append.html</a> <a href="c3ref/str_errcode.html">c3ref/str_errcode.html</a> <a href="c3ref/str_finish.html">c3ref/str_finish.html</a> <a href="c3ref/str_new.html">c3ref/str_new.html</a> <a href="c3ref/strglob.html">c3ref/strglob.html</a> <a href="c3ref/stricmp.html">c3ref/stricmp.html</a> <a href="c3ref/strlike.html">c3ref/strlike.html</a> <a href="c3ref/system_errno.html">c3ref/system_errno.html</a> <a href="c3ref/table_column_metadata.html">c3ref/table_column_metadata.html</a> <a href="c3ref/temp_directory.html">c3ref/temp_directory.html</a> <a href="c3ref/test_control.html">c3ref/test_control.html</a> <a href="c3ref/threadsafe.html">c3ref/threadsafe.html</a> <a href="c3ref/trace_v2.html">c3ref/trace_v2.html</a> <a href="c3ref/txn_state.html">c3ref/txn_state.html</a> <a href="c3ref/unlock_notify.html">c3ref/unlock_notify.html</a> <a href="c3ref/update_hook.html">c3ref/update_hook.html</a> <a href="c3ref/uri_boolean.html">c3ref/uri_boolean.html</a> <a href="c3ref/user_data.html">c3ref/user_data.html</a> <a href="c3ref/value.html">c3ref/value.html</a> <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> <a href="c3ref/value_dup.html">c3ref/value_dup.html</a> <a href="c3ref/value_encoding.html">c3ref/value_encoding.html</a> <a href="c3ref/value_subtype.html">c3ref/value_subtype.html</a> <a href="c3ref/vfs.html">c3ref/vfs.html</a> <a href="c3ref/vfs_find.html">c3ref/vfs_find.html</a> <a href="c3ref/vtab.html">c3ref/vtab.html</a> <a href="c3ref/vtab_collation.html">c3ref/vtab_collation.html</a> <a href="c3ref/vtab_config.html">c3ref/vtab_config.html</a> <a href="c3ref/vtab_cursor.html">c3ref/vtab_cursor.html</a> <a href="c3ref/vtab_distinct.html">c3ref/vtab_distinct.html</a> <a href="c3ref/vtab_in.html">c3ref/vtab_in.html</a> <a href="c3ref/vtab_in_first.html">c3ref/vtab_in_first.html</a> <a href="c3ref/vtab_nochange.html">c3ref/vtab_nochange.html</a> <a href="c3ref/vtab_on_conflict.html">c3ref/vtab_on_conflict.html</a> <a href="c3ref/vtab_rhs_value.html">c3ref/vtab_rhs_value.html</a> <a href="c3ref/wal_autocheckpoint.html">c3ref/wal_autocheckpoint.html</a> <a href="c3ref/wal_checkpoint.html">c3ref/wal_checkpoint.html</a> <a href="c3ref/wal_checkpoint_v2.html">c3ref/wal_checkpoint_v2.html</a> <a href="c3ref/wal_hook.html">c3ref/wal_hook.html</a> <a href="c3ref/win32_set_directory.html">c3ref/win32_set_directory.html</a> </li>
<li><a href="c3ref/open.html">c3ref/open.html</a> &rarr; 
<a href="atomiccommit.html">atomiccommit.html</a> <a href="backup.html">backup.html</a> <a href="c3ref/auto_extension.html">c3ref/auto_extension.html</a> <a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/c_open_autoproxy.html">c3ref/c_open_autoproxy.html</a> <a href="c3ref/close.html">c3ref/close.html</a> <a href="c3ref/enable_shared_cache.html">c3ref/enable_shared_cache.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/initialize.html">c3ref/initialize.html</a> <a href="c3ref/prepare.html">c3ref/prepare.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="c3ref/system_errno.html">c3ref/system_errno.html</a> <a href="c3ref/temp_directory.html">c3ref/temp_directory.html</a> <a href="c3ref/vfs.html">c3ref/vfs.html</a> <a href="capi3.html">capi3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cintro.html">cintro.html</a> <a href="cksumvfs.html">cksumvfs.html</a> <a href="cli.html">cli.html</a> <a href="compile.html">compile.html</a> <a href="custombuild.html">custombuild.html</a> <a href="howtocorrupt.html">howtocorrupt.html</a> <a href="inmemorydb.html">inmemorydb.html</a> <a href="isolation.html">isolation.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_attach.html">lang_attach.html</a> <a href="malloc.html">malloc.html</a> <a href="pragma.html">pragma.html</a> <a href="quickstart.html">quickstart.html</a> <a href="rescode.html">rescode.html</a> <a href="sharedcache.html">sharedcache.html</a> <a href="shortnames.html">shortnames.html</a> <a href="tempfiles.html">tempfiles.html</a> <a href="threadsafe.html">threadsafe.html</a> <a href="uri.html">uri.html</a> <a href="vfs.html">vfs.html</a> <a href="wal.html">wal.html</a> </li>
<li><a href="c3ref/overload_function.html">c3ref/overload_function.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/pcache.html">c3ref/pcache.html</a> &rarr; 
<a href="c3ref/objlist.html">c3ref/objlist.html</a> <a href="c3ref/pcache_methods2.html">c3ref/pcache_methods2.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/pcache_methods2.html">c3ref/pcache_methods2.html</a> &rarr; 
<a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/objlist.html">c3ref/objlist.html</a> <a href="c3ref/pcache.html">c3ref/pcache.html</a> <a href="c3ref/pcache_page.html">c3ref/pcache_page.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="pragma.html">pragma.html</a> </li>
<li><a href="c3ref/pcache_page.html">c3ref/pcache_page.html</a> &rarr; 
<a href="c3ref/objlist.html">c3ref/objlist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/prepare.html">c3ref/prepare.html</a> &rarr; 
<a href="arch.html">arch.html</a> <a href="c3ref/bind_blob.html">c3ref/bind_blob.html</a> <a href="c3ref/bind_parameter_index.html">c3ref/bind_parameter_index.html</a> <a href="c3ref/bind_parameter_name.html">c3ref/bind_parameter_name.html</a> <a href="c3ref/c_limit_attached.html">c3ref/c_limit_attached.html</a> <a href="c3ref/c_prepare_normalize.html">c3ref/c_prepare_normalize.html</a> <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> <a href="c3ref/commit_hook.html">c3ref/commit_hook.html</a> <a href="c3ref/db_handle.html">c3ref/db_handle.html</a> <a href="c3ref/exec.html">c3ref/exec.html</a> <a href="c3ref/expanded_sql.html">c3ref/expanded_sql.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/progress_handler.html">c3ref/progress_handler.html</a> <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="c3ref/step.html">c3ref/step.html</a> <a href="c3ref/stmt.html">c3ref/stmt.html</a> <a href="c3ref/stmt_explain.html">c3ref/stmt_explain.html</a> <a href="c3ref/update_hook.html">c3ref/update_hook.html</a> <a href="capi3.html">capi3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cintro.html">cintro.html</a> <a href="cli.html">cli.html</a> <a href="compile.html">compile.html</a> <a href="errlog.html">errlog.html</a> <a href="faq.html">faq.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="lang_comment.html">lang_comment.html</a> <a href="lang_explain.html">lang_explain.html</a> <a href="limits.html">limits.html</a> <a href="malloc.html">malloc.html</a> <a href="opcode.html">opcode.html</a> <a href="optoverview.html">optoverview.html</a> <a href="pragma.html">pragma.html</a> <a href="queryplanner-ng.html">queryplanner-ng.html</a> <a href="rescode.html">rescode.html</a> <a href="stmt.html">stmt.html</a> <a href="tclsqlite.html">tclsqlite.html</a> <a href="unlock_notify.html">unlock_notify.html</a> <a href="vfs.html">vfs.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="c3ref/update_hook.html">c3ref/update_hook.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/sqlite3session_create.html">session/sqlite3session_create.html</a> </li>
<li><a href="c3ref/profile.html">c3ref/profile.html</a> &rarr; 
<a href="c3ref/c_trace.html">c3ref/c_trace.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="c3ref/trace_v2.html">c3ref/trace_v2.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/progress_handler.html">c3ref/progress_handler.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="security.html">security.html</a> </li>
<li><a href="c3ref/randomness.html">c3ref/randomness.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/release_memory.html">c3ref/release_memory.html</a> &rarr; 
<a href="c3ref/db_release_memory.html">c3ref/db_release_memory.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/reset.html">c3ref/reset.html</a> &rarr; 
<a href="c3ref/bind_blob.html">c3ref/bind_blob.html</a> <a href="c3ref/c_stmtstatus_counter.html">c3ref/c_stmtstatus_counter.html</a> <a href="c3ref/clear_bindings.html">c3ref/clear_bindings.html</a> <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> <a href="c3ref/finalize.html">c3ref/finalize.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/get_auxdata.html">c3ref/get_auxdata.html</a> <a href="c3ref/prepare.html">c3ref/prepare.html</a> <a href="c3ref/step.html">c3ref/step.html</a> <a href="c3ref/stmt.html">c3ref/stmt.html</a> <a href="c3ref/stmt_busy.html">c3ref/stmt_busy.html</a> <a href="c3ref/stmt_explain.html">c3ref/stmt_explain.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cintro.html">cintro.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_transaction.html">lang_transaction.html</a> <a href="opcode.html">opcode.html</a> <a href="stmt.html">stmt.html</a> <a href="unlock_notify.html">unlock_notify.html</a> </li>
<li><a href="c3ref/reset_auto_extension.html">c3ref/reset_auto_extension.html</a> &rarr; 
<a href="c3ref/auto_extension.html">c3ref/auto_extension.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/result_blob.html">c3ref/result_blob.html</a> &rarr; 
<a href="appfunc.html">appfunc.html</a> <a href="bindptr.html">bindptr.html</a> <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> <a href="c3ref/c_static.html">c3ref/c_static.html</a> <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> <a href="c3ref/context.html">c3ref/context.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/value.html">c3ref/value.html</a> <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> <a href="c3ref/vtab_nochange.html">c3ref/vtab_nochange.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cintro.html">cintro.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_corefunc.html">lang_corefunc.html</a> <a href="vtab.html">vtab.html</a> <a href="windowfunctions.html">windowfunctions.html</a> </li>
<li><a href="c3ref/result_subtype.html">c3ref/result_subtype.html</a> &rarr; 
<a href="appfunc.html">appfunc.html</a> <a href="bindptr.html">bindptr.html</a> <a href="c3ref/c_deterministic.html">c3ref/c_deterministic.html</a> <a href="c3ref/context.html">c3ref/context.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/value_subtype.html">c3ref/value_subtype.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/serialize.html">c3ref/serialize.html</a> &rarr; 
<a href="c3ref/c_serialize_nocopy.html">c3ref/c_serialize_nocopy.html</a> <a href="c3ref/db_name.html">c3ref/db_name.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> &rarr; 
<a href="arch.html">arch.html</a> <a href="bindptr.html">bindptr.html</a> <a href="c3ref/c_alter_table.html">c3ref/c_alter_table.html</a> <a href="c3ref/c_deny.html">c3ref/c_deny.html</a> <a href="c3ref/c_fail.html">c3ref/c_fail.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/limit.html">c3ref/limit.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_delete.html">lang_delete.html</a> <a href="lang_explain.html">lang_explain.html</a> <a href="rescode.html">rescode.html</a> <a href="schematab.html">schematab.html</a> <a href="security.html">security.html</a> <a href="tclsqlite.html">tclsqlite.html</a> </li>
<li><a href="c3ref/set_last_insert_rowid.html">c3ref/set_last_insert_rowid.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/last_insert_rowid.html">c3ref/last_insert_rowid.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/sleep.html">c3ref/sleep.html</a> &rarr; 
<a href="backup.html">backup.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/snapshot.html">c3ref/snapshot.html</a> &rarr; 
<a href="c3ref/objlist.html">c3ref/objlist.html</a> <a href="c3ref/snapshot_free.html">c3ref/snapshot_free.html</a> <a href="c3ref/snapshot_get.html">c3ref/snapshot_get.html</a> <a href="c3ref/snapshot_open.html">c3ref/snapshot_open.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/snapshot_cmp.html">c3ref/snapshot_cmp.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/snapshot.html">c3ref/snapshot.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/snapshot_free.html">c3ref/snapshot_free.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/snapshot.html">c3ref/snapshot.html</a> <a href="c3ref/snapshot_get.html">c3ref/snapshot_get.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/snapshot_get.html">c3ref/snapshot_get.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/snapshot.html">c3ref/snapshot.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/snapshot_open.html">c3ref/snapshot_open.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/snapshot.html">c3ref/snapshot.html</a> <a href="c3ref/snapshot_recover.html">c3ref/snapshot_recover.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="rescode.html">rescode.html</a> </li>
<li><a href="c3ref/snapshot_recover.html">c3ref/snapshot_recover.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/snapshot.html">c3ref/snapshot.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/soft_heap_limit.html">c3ref/soft_heap_limit.html</a> &rarr; 
<a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> &rarr; 
<a href="appfunc.html">appfunc.html</a> <a href="atomiccommit.html">atomiccommit.html</a> <a href="backup.html">backup.html</a> <a href="c3ref/auto_extension.html">c3ref/auto_extension.html</a> <a href="c3ref/backup_finish.html">c3ref/backup_finish.html</a> <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> <a href="c3ref/blob_write.html">c3ref/blob_write.html</a> <a href="c3ref/busy_handler.html">c3ref/busy_handler.html</a> <a href="c3ref/busy_timeout.html">c3ref/busy_timeout.html</a> <a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> <a href="c3ref/c_trace.html">c3ref/c_trace.html</a> <a href="c3ref/c_txn_none.html">c3ref/c_txn_none.html</a> <a href="c3ref/close.html">c3ref/close.html</a> <a href="c3ref/collation_needed.html">c3ref/collation_needed.html</a> <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> <a href="c3ref/commit_hook.html">c3ref/commit_hook.html</a> <a href="c3ref/context_db_handle.html">c3ref/context_db_handle.html</a> <a href="c3ref/create_collation.html">c3ref/create_collation.html</a> <a href="c3ref/create_function.html">c3ref/create_function.html</a> <a href="c3ref/create_module.html">c3ref/create_module.html</a> <a href="c3ref/data_directory.html">c3ref/data_directory.html</a> <a href="c3ref/db_cacheflush.html">c3ref/db_cacheflush.html</a> <a href="c3ref/db_config.html">c3ref/db_config.html</a> <a href="c3ref/db_handle.html">c3ref/db_handle.html</a> <a href="c3ref/db_mutex.html">c3ref/db_mutex.html</a> <a href="c3ref/db_status.html">c3ref/db_status.html</a> <a href="c3ref/deserialize.html">c3ref/deserialize.html</a> <a href="c3ref/enable_shared_cache.html">c3ref/enable_shared_cache.html</a> <a href="c3ref/errcode.html">c3ref/errcode.html</a> <a href="c3ref/exec.html">c3ref/exec.html</a> <a href="c3ref/get_clientdata.html">c3ref/get_clientdata.html</a> <a href="c3ref/initialize.html">c3ref/initialize.html</a> <a href="c3ref/interrupt.html">c3ref/interrupt.html</a> <a href="c3ref/intro.html">c3ref/intro.html</a> <a href="c3ref/limit.html">c3ref/limit.html</a> <a href="c3ref/module.html">c3ref/module.html</a> <a href="c3ref/next_stmt.html">c3ref/next_stmt.html</a> <a href="c3ref/objlist.html">c3ref/objlist.html</a> <a href="c3ref/open.html">c3ref/open.html</a> <a href="c3ref/prepare.html">c3ref/prepare.html</a> <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> <a href="c3ref/progress_handler.html">c3ref/progress_handler.html</a> <a href="c3ref/serialize.html">c3ref/serialize.html</a> <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> <a href="c3ref/snapshot.html">c3ref/snapshot.html</a> <a href="c3ref/snapshot_get.html">c3ref/snapshot_get.html</a> <a href="c3ref/snapshot_open.html">c3ref/snapshot_open.html</a> <a href="c3ref/table_column_metadata.html">c3ref/table_column_metadata.html</a> <a href="c3ref/temp_directory.html">c3ref/temp_directory.html</a> <a href="c3ref/trace_v2.html">c3ref/trace_v2.html</a> <a href="c3ref/update_hook.html">c3ref/update_hook.html</a> <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> <a href="c3ref/vtab_config.html">c3ref/vtab_config.html</a> <a href="c3ref/wal_autocheckpoint.html">c3ref/wal_autocheckpoint.html</a> <a href="c3ref/wal_checkpoint.html">c3ref/wal_checkpoint.html</a> <a href="c3ref/wal_checkpoint_v2.html">c3ref/wal_checkpoint_v2.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cintro.html">cintro.html</a> <a href="cli.html">cli.html</a> <a href="compile.html">compile.html</a> <a href="custombuild.html">custombuild.html</a> <a href="dbstat.html">dbstat.html</a> <a href="fileformat2.html">fileformat2.html</a> <a href="foreignkeys.html">foreignkeys.html</a> <a href="fullsql.html">fullsql.html</a> <a href="imposter.html">imposter.html</a> <a href="isolation.html">isolation.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_analyze.html">lang_analyze.html</a> <a href="lang_attach.html">lang_attach.html</a> <a href="lang_createview.html">lang_createview.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="lang_vacuum.html">lang_vacuum.html</a> <a href="malloc.html">malloc.html</a> <a href="pragma.html">pragma.html</a> <a href="rescode.html">rescode.html</a> <a href="schematab.html">schematab.html</a> <a href="security.html">security.html</a> <a href="sharedcache.html">sharedcache.html</a> <a href="stmt.html">stmt.html</a> <a href="tclsqlite.html">tclsqlite.html</a> <a href="tempfiles.html">tempfiles.html</a> <a href="threadsafe.html">threadsafe.html</a> <a href="unlock_notify.html">unlock_notify.html</a> <a href="uri.html">uri.html</a> <a href="useovernet.html">useovernet.html</a> <a href="vfs.html">vfs.html</a> <a href="vtab.html">vtab.html</a> <a href="vtablist.html">vtablist.html</a> <a href="wal.html">wal.html</a> <a href="windowfunctions.html">windowfunctions.html</a> </li>
<li><a href="c3ref/status.html">c3ref/status.html</a> &rarr; 
<a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/c_status_malloc_count.html">c3ref/c_status_malloc_count.html</a> <a href="c3ref/db_status.html">c3ref/db_status.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/stmt_status.html">c3ref/stmt_status.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="malloc.html">malloc.html</a> <a href="memstat.html">memstat.html</a> <a href="vtablist.html">vtablist.html</a> </li>
<li><a href="c3ref/step.html">c3ref/step.html</a> &rarr; 
<a href="arch.html">arch.html</a> <a href="backup.html">backup.html</a> <a href="c3ref/bind_blob.html">c3ref/bind_blob.html</a> <a href="c3ref/busy_timeout.html">c3ref/busy_timeout.html</a> <a href="c3ref/c_stmtstatus_counter.html">c3ref/c_stmtstatus_counter.html</a> <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> <a href="c3ref/column_database_name.html">c3ref/column_database_name.html</a> <a href="c3ref/column_name.html">c3ref/column_name.html</a> <a href="c3ref/commit_hook.html">c3ref/commit_hook.html</a> <a href="c3ref/data_count.html">c3ref/data_count.html</a> <a href="c3ref/exec.html">c3ref/exec.html</a> <a href="c3ref/finalize.html">c3ref/finalize.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/prepare.html">c3ref/prepare.html</a> <a href="c3ref/profile.html">c3ref/profile.html</a> <a href="c3ref/progress_handler.html">c3ref/progress_handler.html</a> <a href="c3ref/reset.html">c3ref/reset.html</a> <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> <a href="c3ref/stmt.html">c3ref/stmt.html</a> <a href="c3ref/stmt_busy.html">c3ref/stmt_busy.html</a> <a href="c3ref/unlock_notify.html">c3ref/unlock_notify.html</a> <a href="c3ref/update_hook.html">c3ref/update_hook.html</a> <a href="capi3.html">capi3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cintro.html">cintro.html</a> <a href="compile.html">compile.html</a> <a href="eqp.html">eqp.html</a> <a href="errlog.html">errlog.html</a> <a href="faq.html">faq.html</a> <a href="isolation.html">isolation.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_corefunc.html">lang_corefunc.html</a> <a href="lang_datefunc.html">lang_datefunc.html</a> <a href="lang_explain.html">lang_explain.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="malloc.html">malloc.html</a> <a href="opcode.html">opcode.html</a> <a href="optoverview.html">optoverview.html</a> <a href="pragma.html">pragma.html</a> <a href="rescode.html">rescode.html</a> <a href="stmt.html">stmt.html</a> <a href="unlock_notify.html">unlock_notify.html</a> <a href="vfs.html">vfs.html</a> </li>
<li><a href="c3ref/stmt.html">c3ref/stmt.html</a> &rarr; 
<a href="arch.html">arch.html</a> <a href="bytecodevtab.html">bytecodevtab.html</a> <a href="c3ref/bind_blob.html">c3ref/bind_blob.html</a> <a href="c3ref/bind_parameter_count.html">c3ref/bind_parameter_count.html</a> <a href="c3ref/bind_parameter_name.html">c3ref/bind_parameter_name.html</a> <a href="c3ref/busy_handler.html">c3ref/busy_handler.html</a> <a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/c_limit_attached.html">c3ref/c_limit_attached.html</a> <a href="c3ref/c_trace.html">c3ref/c_trace.html</a> <a href="c3ref/clear_bindings.html">c3ref/clear_bindings.html</a> <a href="c3ref/close.html">c3ref/close.html</a> <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> <a href="c3ref/column_count.html">c3ref/column_count.html</a> <a href="c3ref/column_database_name.html">c3ref/column_database_name.html</a> <a href="c3ref/column_decltype.html">c3ref/column_decltype.html</a> <a href="c3ref/column_name.html">c3ref/column_name.html</a> <a href="c3ref/data_count.html">c3ref/data_count.html</a> <a href="c3ref/db_handle.html">c3ref/db_handle.html</a> <a href="c3ref/expanded_sql.html">c3ref/expanded_sql.html</a> <a href="c3ref/finalize.html">c3ref/finalize.html</a> <a href="c3ref/intro.html">c3ref/intro.html</a> <a href="c3ref/next_stmt.html">c3ref/next_stmt.html</a> <a href="c3ref/objlist.html">c3ref/objlist.html</a> <a href="c3ref/prepare.html">c3ref/prepare.html</a> <a href="c3ref/reset.html">c3ref/reset.html</a> <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> <a href="c3ref/step.html">c3ref/step.html</a> <a href="c3ref/stmt_busy.html">c3ref/stmt_busy.html</a> <a href="c3ref/stmt_explain.html">c3ref/stmt_explain.html</a> <a href="c3ref/stmt_readonly.html">c3ref/stmt_readonly.html</a> <a href="c3ref/stmt_status.html">c3ref/stmt_status.html</a> <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cintro.html">cintro.html</a> <a href="compile.html">compile.html</a> <a href="custombuild.html">custombuild.html</a> <a href="datatype3.html">datatype3.html</a> <a href="faq.html">faq.html</a> <a href="howitworks.html">howitworks.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_explain.html">lang_explain.html</a> <a href="malloc.html">malloc.html</a> <a href="opcode.html">opcode.html</a> <a href="optoverview.html">optoverview.html</a> <a href="pragma.html">pragma.html</a> <a href="rescode.html">rescode.html</a> <a href="stmt.html">stmt.html</a> <a href="tclsqlite.html">tclsqlite.html</a> <a href="threadsafe.html">threadsafe.html</a> <a href="unlock_notify.html">unlock_notify.html</a> <a href="vfs.html">vfs.html</a> <a href="vtablist.html">vtablist.html</a> </li>
<li><a href="c3ref/stmt_busy.html">c3ref/stmt_busy.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/stmt.html">c3ref/stmt.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/stmt_explain.html">c3ref/stmt_explain.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/stmt.html">c3ref/stmt.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/stmt_isexplain.html">c3ref/stmt_isexplain.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/stmt.html">c3ref/stmt.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/stmt_readonly.html">c3ref/stmt_readonly.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/stmt.html">c3ref/stmt.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/stmt_scanstatus.html">c3ref/stmt_scanstatus.html</a> &rarr; 
<a href="c3ref/c_scanstat_est.html">c3ref/c_scanstat_est.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/stmt.html">c3ref/stmt.html</a> <a href="c3ref/stmt_scanstatus_reset.html">c3ref/stmt_scanstatus_reset.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="profile.html">profile.html</a> </li>
<li><a href="c3ref/stmt_scanstatus_reset.html">c3ref/stmt_scanstatus_reset.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/stmt.html">c3ref/stmt.html</a> <a href="c3ref/stmt_scanstatus.html">c3ref/stmt_scanstatus.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/stmt_status.html">c3ref/stmt_status.html</a> &rarr; 
<a href="c3ref/c_stmtstatus_counter.html">c3ref/c_stmtstatus_counter.html</a> <a href="c3ref/db_status.html">c3ref/db_status.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/stmt.html">c3ref/stmt.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_indexedby.html">lang_indexedby.html</a> <a href="tclsqlite.html">tclsqlite.html</a> </li>
<li><a href="c3ref/str.html">c3ref/str.html</a> &rarr; 
<a href="c3ref/objlist.html">c3ref/objlist.html</a> <a href="c3ref/str_append.html">c3ref/str_append.html</a> <a href="c3ref/str_errcode.html">c3ref/str_errcode.html</a> <a href="c3ref/str_finish.html">c3ref/str_finish.html</a> <a href="c3ref/str_new.html">c3ref/str_new.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/str_append.html">c3ref/str_append.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/str.html">c3ref/str.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="printf.html">printf.html</a> </li>
<li><a href="c3ref/str_errcode.html">c3ref/str_errcode.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/str.html">c3ref/str.html</a> <a href="c3ref/str_append.html">c3ref/str_append.html</a> <a href="c3ref/str_new.html">c3ref/str_new.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/str_finish.html">c3ref/str_finish.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/str.html">c3ref/str.html</a> <a href="c3ref/str_new.html">c3ref/str_new.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/str_new.html">c3ref/str_new.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/str.html">c3ref/str.html</a> <a href="c3ref/str_append.html">c3ref/str_append.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/strglob.html">c3ref/strglob.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/strlike.html">c3ref/strlike.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/stricmp.html">c3ref/stricmp.html</a> &rarr; 
<a href="c3ref/create_collation.html">c3ref/create_collation.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/strglob.html">c3ref/strglob.html</a> <a href="c3ref/strlike.html">c3ref/strlike.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="datatype3.html">datatype3.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/strlike.html">c3ref/strlike.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/strglob.html">c3ref/strglob.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="pragma.html">pragma.html</a> </li>
<li><a href="c3ref/system_errno.html">c3ref/system_errno.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/table_column_metadata.html">c3ref/table_column_metadata.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/temp_directory.html">c3ref/temp_directory.html</a> &rarr; 
<a href="c3ref/objlist.html">c3ref/objlist.html</a> <a href="c3ref/open.html">c3ref/open.html</a> <a href="c3ref/win32_set_directory.html">c3ref/win32_set_directory.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="pragma.html">pragma.html</a> <a href="tempfiles.html">tempfiles.html</a> </li>
<li><a href="c3ref/test_control.html">c3ref/test_control.html</a> &rarr; 
<a href="c3ref/c_testctrl_always.html">c3ref/c_testctrl_always.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="imposter.html">imposter.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="testing.html">testing.html</a> </li>
<li><a href="c3ref/threadsafe.html">c3ref/threadsafe.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/value.html">c3ref/value.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="custombuild.html">custombuild.html</a> <a href="faq.html">faq.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="threadsafe.html">threadsafe.html</a> </li>
<li><a href="c3ref/trace_v2.html">c3ref/trace_v2.html</a> &rarr; 
<a href="c3ref/c_trace.html">c3ref/c_trace.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/profile.html">c3ref/profile.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/txn_state.html">c3ref/txn_state.html</a> &rarr; 
<a href="c3ref/c_txn_none.html">c3ref/c_txn_none.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cli.html">cli.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/unlock_notify.html">c3ref/unlock_notify.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="tclsqlite.html">tclsqlite.html</a> <a href="unlock_notify.html">unlock_notify.html</a> </li>
<li><a href="c3ref/update_hook.html">c3ref/update_hook.html</a> &rarr; 
<a href="c3ref/commit_hook.html">c3ref/commit_hook.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_conflict.html">lang_conflict.html</a> <a href="withoutrowid.html">withoutrowid.html</a> </li>
<li><a href="c3ref/uri_boolean.html">c3ref/uri_boolean.html</a> &rarr; 
<a href="c3ref/create_filename.html">c3ref/create_filename.html</a> <a href="c3ref/db_filename.html">c3ref/db_filename.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/user_data.html">c3ref/user_data.html</a> &rarr; 
<a href="appfunc.html">appfunc.html</a> <a href="c3ref/context.html">c3ref/context.html</a> <a href="c3ref/create_function.html">c3ref/create_function.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cintro.html">cintro.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/value.html">c3ref/value.html</a> &rarr; 
<a href="appfunc.html">appfunc.html</a> <a href="bindptr.html">bindptr.html</a> <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> <a href="c3ref/objlist.html">c3ref/objlist.html</a> <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> <a href="c3ref/value_dup.html">c3ref/value_dup.html</a> <a href="c3ref/value_encoding.html">c3ref/value_encoding.html</a> <a href="c3ref/vtab_in.html">c3ref/vtab_in.html</a> <a href="c3ref/vtab_in_first.html">c3ref/vtab_in_first.html</a> <a href="c3ref/vtab_rhs_value.html">c3ref/vtab_rhs_value.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="opcode.html">opcode.html</a> <a href="windowfunctions.html">windowfunctions.html</a> </li>
<li><a href="c3ref/value_blob.html">c3ref/value_blob.html</a> &rarr; 
<a href="appfunc.html">appfunc.html</a> <a href="bindptr.html">bindptr.html</a> <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> <a href="c3ref/create_function.html">c3ref/create_function.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> <a href="c3ref/value.html">c3ref/value.html</a> <a href="c3ref/value_encoding.html">c3ref/value_encoding.html</a> <a href="c3ref/vtab_nochange.html">c3ref/vtab_nochange.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cintro.html">cintro.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="vtab.html">vtab.html</a> <a href="windowfunctions.html">windowfunctions.html</a> </li>
<li><a href="c3ref/value_dup.html">c3ref/value_dup.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/value.html">c3ref/value.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/value_encoding.html">c3ref/value_encoding.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/value.html">c3ref/value.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/value_subtype.html">c3ref/value_subtype.html</a> &rarr; 
<a href="bindptr.html">bindptr.html</a> <a href="c3ref/c_deterministic.html">c3ref/c_deterministic.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/value.html">c3ref/value.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/vfs.html">c3ref/vfs.html</a> &rarr; 
<a href="asyncvfs.html">asyncvfs.html</a> <a href="c3ref/c_access_exists.html">c3ref/c_access_exists.html</a> <a href="c3ref/c_fcntl_begin_atomic_write.html">c3ref/c_fcntl_begin_atomic_write.html</a> <a href="c3ref/c_open_autoproxy.html">c3ref/c_open_autoproxy.html</a> <a href="c3ref/create_filename.html">c3ref/create_filename.html</a> <a href="c3ref/data_directory.html">c3ref/data_directory.html</a> <a href="c3ref/database_file_object.html">c3ref/database_file_object.html</a> <a href="c3ref/file.html">c3ref/file.html</a> <a href="c3ref/file_control.html">c3ref/file_control.html</a> <a href="c3ref/initialize.html">c3ref/initialize.html</a> <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> <a href="c3ref/objlist.html">c3ref/objlist.html</a> <a href="c3ref/open.html">c3ref/open.html</a> <a href="c3ref/randomness.html">c3ref/randomness.html</a> <a href="c3ref/sleep.html">c3ref/sleep.html</a> <a href="c3ref/temp_directory.html">c3ref/temp_directory.html</a> <a href="c3ref/vfs_find.html">c3ref/vfs_find.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="custombuild.html">custombuild.html</a> <a href="howtocorrupt.html">howtocorrupt.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_datefunc.html">lang_datefunc.html</a> <a href="loadext.html">loadext.html</a> <a href="rescode.html">rescode.html</a> <a href="testing.html">testing.html</a> <a href="vfs.html">vfs.html</a> </li>
<li><a href="c3ref/vfs_find.html">c3ref/vfs_find.html</a> &rarr; 
<a href="asyncvfs.html">asyncvfs.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/vfs.html">c3ref/vfs.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cintro.html">cintro.html</a> <a href="compile.html">compile.html</a> <a href="custombuild.html">custombuild.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="privatebranch.html">privatebranch.html</a> <a href="uri.html">uri.html</a> <a href="vfs.html">vfs.html</a> </li>
<li><a href="c3ref/vtab.html">c3ref/vtab.html</a> &rarr; 
<a href="c3ref/objlist.html">c3ref/objlist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="c3ref/vtab_collation.html">c3ref/vtab_collation.html</a> &rarr; 
<a href="c3ref/c_index_constraint_eq.html">c3ref/c_index_constraint_eq.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/index_info.html">c3ref/index_info.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="c3ref/vtab_config.html">c3ref/vtab_config.html</a> &rarr; 
<a href="c3ref/c_vtab_constraint_support.html">c3ref/c_vtab_constraint_support.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="c3ref/vtab_cursor.html">c3ref/vtab_cursor.html</a> &rarr; 
<a href="c3ref/objlist.html">c3ref/objlist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="c3ref/vtab_distinct.html">c3ref/vtab_distinct.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/index_info.html">c3ref/index_info.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="c3ref/vtab_in.html">c3ref/vtab_in.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/vtab_in_first.html">c3ref/vtab_in_first.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/vtab_in_first.html">c3ref/vtab_in_first.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/vtab_in.html">c3ref/vtab_in.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c3ref/vtab_nochange.html">c3ref/vtab_nochange.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="c3ref/vtab_on_conflict.html">c3ref/vtab_on_conflict.html</a> &rarr; 
<a href="c3ref/c_deny.html">c3ref/c_deny.html</a> <a href="c3ref/c_fail.html">c3ref/c_fail.html</a> <a href="c3ref/c_vtab_constraint_support.html">c3ref/c_vtab_constraint_support.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="rescode.html">rescode.html</a> </li>
<li><a href="c3ref/vtab_rhs_value.html">c3ref/vtab_rhs_value.html</a> &rarr; 
<a href="c3ref/c_index_constraint_eq.html">c3ref/c_index_constraint_eq.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/index_info.html">c3ref/index_info.html</a> <a href="c3ref/value.html">c3ref/value.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="rescode.html">rescode.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="c3ref/wal_autocheckpoint.html">c3ref/wal_autocheckpoint.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="c3ref/wal_hook.html">c3ref/wal_hook.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="pragma.html">pragma.html</a> <a href="wal.html">wal.html</a> <a href="walformat.html">walformat.html</a> </li>
<li><a href="c3ref/wal_checkpoint.html">c3ref/wal_checkpoint.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="pragma.html">pragma.html</a> <a href="wal.html">wal.html</a> </li>
<li><a href="c3ref/wal_checkpoint_v2.html">c3ref/wal_checkpoint_v2.html</a> &rarr; 
<a href="c3ref/c_checkpoint_full.html">c3ref/c_checkpoint_full.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="c3ref/wal_autocheckpoint.html">c3ref/wal_autocheckpoint.html</a> <a href="c3ref/wal_checkpoint.html">c3ref/wal_checkpoint.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="pragma.html">pragma.html</a> <a href="wal.html">wal.html</a> </li>
<li><a href="c3ref/wal_hook.html">c3ref/wal_hook.html</a> &rarr; 
<a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> <a href="c3ref/wal_autocheckpoint.html">c3ref/wal_autocheckpoint.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="tclsqlite.html">tclsqlite.html</a> <a href="wal.html">wal.html</a> </li>
<li><a href="c3ref/win32_set_directory.html">c3ref/win32_set_directory.html</a> &rarr; 
<a href="c3ref/c_win32_data_directory_type.html">c3ref/c_win32_data_directory_type.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="c_interface.html">c_interface.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="capi3.html">capi3.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="capi3ref.html">capi3ref.html</a> &rarr; 
<a href="c3ref/intro.html">c3ref/intro.html</a> <a href="doclist.html">doclist.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="carray.html">carray.html</a> &rarr; 
<a href="bindptr.html">bindptr.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="loadext.html">loadext.html</a> <a href="sitemap.html">sitemap.html</a> <a href="vtablist.html">vtablist.html</a> </li>
<li><a href="chronology.html">chronology.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="docs.html">docs.html</a> <a href="getthecode.html">getthecode.html</a> <a href="index.html">index.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="qmplan.html">qmplan.html</a> <a href="sitemap.html">sitemap.html</a> <a href="versionnumbers.html">versionnumbers.html</a> </li>
<li><a href="cintro.html">cintro.html</a> &rarr; 
<a href="c3ref/intro.html">c3ref/intro.html</a> <a href="capi3.html">capi3.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="doclist.html">doclist.html</a> <a href="docs.html">docs.html</a> <a href="features.html">features.html</a> <a href="index.html">index.html</a> <a href="lts.html">lts.html</a> <a href="quickstart.html">quickstart.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="cksumvfs.html">cksumvfs.html</a> &rarr; 
<a href="c3ref/c_fcntl_begin_atomic_write.html">c3ref/c_fcntl_begin_atomic_write.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="rescode.html">rescode.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="cli.html">cli.html</a> &rarr; 
<a href="bytecodevtab.html">bytecodevtab.html</a> <a href="c3ref/c_deterministic.html">c3ref/c_deterministic.html</a> <a href="c_interface.html">c_interface.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="completion.html">completion.html</a> <a href="csv.html">csv.html</a> <a href="cves.html">cves.html</a> <a href="dbpage.html">dbpage.html</a> <a href="debugging.html">debugging.html</a> <a href="doclist.html">doclist.html</a> <a href="eqp.html">eqp.html</a> <a href="features.html">features.html</a> <a href="floatingpoint.html">floatingpoint.html</a> <a href="howtocompile.html">howtocompile.html</a> <a href="imposter.html">imposter.html</a> <a href="json1.html">json1.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_with.html">lang_with.html</a> <a href="loadext.html">loadext.html</a> <a href="nulinstr.html">nulinstr.html</a> <a href="opcode.html">opcode.html</a> <a href="profile.html">profile.html</a> <a href="qmplan.html">qmplan.html</a> <a href="quickstart.html">quickstart.html</a> <a href="quirks.html">quirks.html</a> <a href="recovery.html">recovery.html</a> <a href="series.html">series.html</a> <a href="sitemap.html">sitemap.html</a> <a href="sqlanalyze.html">sqlanalyze.html</a> <a href="sqlar.html">sqlar.html</a> <a href="stmt.html">stmt.html</a> <a href="stricttables.html">stricttables.html</a> <a href="uintcseq.html">uintcseq.html</a> <a href="vfs.html">vfs.html</a> <a href="vtab.html">vtab.html</a> <a href="vtablist.html">vtablist.html</a> <a href="wal.html">wal.html</a> <a href="whentouse.html">whentouse.html</a> <a href="zipfile.html">zipfile.html</a> </li>
<li><a href="codeofconduct.html">codeofconduct.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="codeofethics.html">codeofethics.html</a> &rarr; 
<a href="codeofconduct.html">codeofconduct.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="compile.html">compile.html</a> &rarr; 
<a href="amalgamation.html">amalgamation.html</a> <a href="appfunc.html">appfunc.html</a> <a href="bytecodevtab.html">bytecodevtab.html</a> <a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> <a href="c3ref/c_fcntl_begin_atomic_write.html">c3ref/c_fcntl_begin_atomic_write.html</a> <a href="c3ref/c_status_malloc_count.html">c3ref/c_status_malloc_count.html</a> <a href="c3ref/column_database_name.html">c3ref/column_database_name.html</a> <a href="c3ref/compileoption_get.html">c3ref/compileoption_get.html</a> <a href="c3ref/db_release_memory.html">c3ref/db_release_memory.html</a> <a href="c3ref/deserialize.html">c3ref/deserialize.html</a> <a href="c3ref/enable_shared_cache.html">c3ref/enable_shared_cache.html</a> <a href="c3ref/expanded_sql.html">c3ref/expanded_sql.html</a> <a href="c3ref/free.html">c3ref/free.html</a> <a href="c3ref/get_auxdata.html">c3ref/get_auxdata.html</a> <a href="c3ref/hard_heap_limit64.html">c3ref/hard_heap_limit64.html</a> <a href="c3ref/initialize.html">c3ref/initialize.html</a> <a href="c3ref/keyword_check.html">c3ref/keyword_check.html</a> <a href="c3ref/open.html">c3ref/open.html</a> <a href="c3ref/prepare.html">c3ref/prepare.html</a> <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> <a href="c3ref/profile.html">c3ref/profile.html</a> <a href="c3ref/release_memory.html">c3ref/release_memory.html</a> <a href="c3ref/serialize.html">c3ref/serialize.html</a> <a href="c3ref/snapshot_cmp.html">c3ref/snapshot_cmp.html</a> <a href="c3ref/snapshot_free.html">c3ref/snapshot_free.html</a> <a href="c3ref/snapshot_get.html">c3ref/snapshot_get.html</a> <a href="c3ref/snapshot_open.html">c3ref/snapshot_open.html</a> <a href="c3ref/snapshot_recover.html">c3ref/snapshot_recover.html</a> <a href="c3ref/step.html">c3ref/step.html</a> <a href="c3ref/stmt_scanstatus.html">c3ref/stmt_scanstatus.html</a> <a href="c3ref/stmt_scanstatus_reset.html">c3ref/stmt_scanstatus_reset.html</a> <a href="c3ref/threadsafe.html">c3ref/threadsafe.html</a> <a href="c3ref/unlock_notify.html">c3ref/unlock_notify.html</a> <a href="c3ref/value.html">c3ref/value.html</a> <a href="c3ref/wal_autocheckpoint.html">c3ref/wal_autocheckpoint.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cli.html">cli.html</a> <a href="cves.html">cves.html</a> <a href="dbpage.html">dbpage.html</a> <a href="dbstat.html">dbstat.html</a> <a href="debugging.html">debugging.html</a> <a href="doclist.html">doclist.html</a> <a href="faq.html">faq.html</a> <a href="fasterthanfs.html">fasterthanfs.html</a> <a href="fileformat2.html">fileformat2.html</a> <a href="foreignkeys.html">foreignkeys.html</a> <a href="fts3.html">fts3.html</a> <a href="geopoly.html">geopoly.html</a> <a href="howtocompile.html">howtocompile.html</a> <a href="howtocorrupt.html">howtocorrupt.html</a> <a href="inmemorydb.html">inmemorydb.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_analyze.html">lang_analyze.html</a> <a href="lang_corefunc.html">lang_corefunc.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_delete.html">lang_delete.html</a> <a href="lang_keywords.html">lang_keywords.html</a> <a href="lang_mathfunc.html">lang_mathfunc.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_update.html">lang_update.html</a> <a href="lang_vacuum.html">lang_vacuum.html</a> <a href="loadext.html">loadext.html</a> <a href="lts.html">lts.html</a> <a href="malloc.html">malloc.html</a> <a href="mmap.html">mmap.html</a> <a href="opcode.html">opcode.html</a> <a href="optoverview.html">optoverview.html</a> <a href="pragma.html">pragma.html</a> <a href="privatebranch.html">privatebranch.html</a> <a href="profile.html">profile.html</a> <a href="psow.html">psow.html</a> <a href="queryplanner-ng.html">queryplanner-ng.html</a> <a href="quirks.html">quirks.html</a> <a href="rbu.html">rbu.html</a> <a href="rescode.html">rescode.html</a> <a href="rtree.html">rtree.html</a> <a href="security.html">security.html</a> <a href="selfcontained.html">selfcontained.html</a> <a href="sharedcache.html">sharedcache.html</a> <a href="shortnames.html">shortnames.html</a> <a href="sitemap.html">sitemap.html</a> <a href="stmt.html">stmt.html</a> <a href="tempfiles.html">tempfiles.html</a> <a href="testing.html">testing.html</a> <a href="th3.html">th3.html</a> <a href="threadsafe.html">threadsafe.html</a> <a href="unlock_notify.html">unlock_notify.html</a> <a href="uri.html">uri.html</a> <a href="vtab.html">vtab.html</a> <a href="wal.html">wal.html</a> </li>
<li><a href="completion.html">completion.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> <a href="vtablist.html">vtablist.html</a> </li>
<li><a href="conflict.html">conflict.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="consortium.html">consortium.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="index.html">index.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="copyright.html">copyright.html</a> &rarr; 
<a href="about.html">about.html</a> <a href="doclist.html">doclist.html</a> <a href="famous.html">famous.html</a> <a href="faq.html">faq.html</a> <a href="features.html">features.html</a> <a href="hirely.html">hirely.html</a> <a href="index.html">index.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> <a href="support.html">support.html</a> <a href="th3.html">th3.html</a> </li>
<li><a href="cpu.html">cpu.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="crew.html">crew.html</a> &rarr; 
<a href="about.html">about.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="printf.html">printf.html</a> <a href="sitemap.html">sitemap.html</a> <a href="sqlar.html">sqlar.html</a> </li>
<li><a href="csv.html">csv.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> <a href="vtablist.html">vtablist.html</a> </li>
<li><a href="custombuild.html">custombuild.html</a> &rarr; 
<a href="c3ref/initialize.html">c3ref/initialize.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="cves.html">cves.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="datatype3.html">datatype3.html</a> &rarr; 
<a href="c3ref/create_collation.html">c3ref/create_collation.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cintro.html">cintro.html</a> <a href="cli.html">cli.html</a> <a href="doclist.html">doclist.html</a> <a href="faq.html">faq.html</a> <a href="fileformat2.html">fileformat2.html</a> <a href="flextypegood.html">flextypegood.html</a> <a href="foreignkeys.html">foreignkeys.html</a> <a href="fts3.html">fts3.html</a> <a href="gencol.html">gencol.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_corefunc.html">lang_corefunc.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="lang_select.html">lang_select.html</a> <a href="loadext.html">loadext.html</a> <a href="optoverview.html">optoverview.html</a> <a href="pragma.html">pragma.html</a> <a href="queryplanner-ng.html">queryplanner-ng.html</a> <a href="quirks.html">quirks.html</a> <a href="rbu.html">rbu.html</a> <a href="rtree.html">rtree.html</a> <a href="sitemap.html">sitemap.html</a> <a href="sqldiff.html">sqldiff.html</a> <a href="stricttables.html">stricttables.html</a> <a href="version3.html">version3.html</a> <a href="vtab.html">vtab.html</a> <a href="withoutrowid.html">withoutrowid.html</a> </li>
<li><a href="datatypes.html">datatypes.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="dbhash.html">dbhash.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="dbpage.html">dbpage.html</a> &rarr; 
<a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> <a href="vtablist.html">vtablist.html</a> </li>
<li><a href="dbstat.html">dbstat.html</a> &rarr; 
<a href="amalgamation.html">amalgamation.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="docs.html">docs.html</a> <a href="howtocompile.html">howtocompile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> <a href="sqlanalyze.html">sqlanalyze.html</a> <a href="vtab.html">vtab.html</a> <a href="vtablist.html">vtablist.html</a> </li>
<li><a href="debugging.html">debugging.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lts.html">lts.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="deterministic.html">deterministic.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="expridx.html">expridx.html</a> <a href="gencol.html">gencol.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="partialindex.html">partialindex.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="different.html">different.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="sitemap.html">sitemap.html</a> <a href="tempfiles.html">tempfiles.html</a> </li>
<li><a href="doclist.html">doclist.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="docs.html">docs.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="download.html">download.html</a> &rarr; 
<a href="amalgamation.html">amalgamation.html</a> <a href="cli.html">cli.html</a> <a href="doclist.html">doclist.html</a> <a href="getthecode.html">getthecode.html</a> <a href="howtocompile.html">howtocompile.html</a> <a href="index.html">index.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="quickstart.html">quickstart.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="eqp.html">eqp.html</a> &rarr; 
<a href="c3ref/c_scanstat_est.html">c3ref/c_scanstat_est.html</a> <a href="c3ref/stmt_explain.html">c3ref/stmt_explain.html</a> <a href="c3ref/stmt_readonly.html">c3ref/stmt_readonly.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cli.html">cli.html</a> <a href="compile.html">compile.html</a> <a href="debugging.html">debugging.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_explain.html">lang_explain.html</a> <a href="pragma.html">pragma.html</a> <a href="profile.html">profile.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="errlog.html">errlog.html</a> &rarr; 
<a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/log.html">c3ref/log.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cintro.html">cintro.html</a> <a href="doclist.html">doclist.html</a> <a href="howtocorrupt.html">howtocorrupt.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="optoverview.html">optoverview.html</a> <a href="quirks.html">quirks.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="expridx.html">expridx.html</a> &rarr; 
<a href="c3ref/c_deterministic.html">c3ref/c_deterministic.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="deterministic.html">deterministic.html</a> <a href="doclist.html">doclist.html</a> <a href="features.html">features.html</a> <a href="fullsql.html">fullsql.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="lang_reindex.html">lang_reindex.html</a> <a href="optoverview.html">optoverview.html</a> <a href="pragma.html">pragma.html</a> <a href="rbu.html">rbu.html</a> <a href="sitemap.html">sitemap.html</a> <a href="versionnumbers.html">versionnumbers.html</a> </li>
<li><a href="famous.html">famous.html</a> &rarr; 
<a href="about.html">about.html</a> <a href="doclist.html">doclist.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="faq.html">faq.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="docs.html">docs.html</a> <a href="index.html">index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="fasterthanfs.html">fasterthanfs.html</a> &rarr; 
<a href="about.html">about.html</a> <a href="aff_short.html">aff_short.html</a> <a href="appfileformat.html">appfileformat.html</a> <a href="doclist.html">doclist.html</a> <a href="features.html">features.html</a> <a href="howitworks.html">howitworks.html</a> <a href="index.html">index.html</a> <a href="intern-v-extern-blob.html">intern-v-extern-blob.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> <a href="whentouse.html">whentouse.html</a> <a href="whyc.html">whyc.html</a> </li>
<li><a href="features.html">features.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="docs.html">docs.html</a> <a href="index.html">index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="fileformat.html">fileformat.html</a> &rarr; 
<a href="lts.html">lts.html</a> <a href="vdbe.html">vdbe.html</a> </li>
<li><a href="fileformat2.html">fileformat2.html</a> &rarr; 
<a href="about.html">about.html</a> <a href="appfileformat.html">appfileformat.html</a> <a href="arch.html">arch.html</a> <a href="atomiccommit.html">atomiccommit.html</a> <a href="autoinc.html">autoinc.html</a> <a href="c3ref/deserialize.html">c3ref/deserialize.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cksumvfs.html">cksumvfs.html</a> <a href="compile.html">compile.html</a> <a href="datatype3.html">datatype3.html</a> <a href="dbpage.html">dbpage.html</a> <a href="doclist.html">doclist.html</a> <a href="formatchng.html">formatchng.html</a> <a href="fts3.html">fts3.html</a> <a href="howitworks.html">howitworks.html</a> <a href="howtocorrupt.html">howtocorrupt.html</a> <a href="imposter.html">imposter.html</a> <a href="index.html">index.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_analyze.html">lang_analyze.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="lockingv3.html">lockingv3.html</a> <a href="lts.html">lts.html</a> <a href="onefile.html">onefile.html</a> <a href="opcode.html">opcode.html</a> <a href="optoverview.html">optoverview.html</a> <a href="pragma.html">pragma.html</a> <a href="qmplan.html">qmplan.html</a> <a href="queryplanner-ng.html">queryplanner-ng.html</a> <a href="rescode.html">rescode.html</a> <a href="rowidtable.html">rowidtable.html</a> <a href="schematab.html">schematab.html</a> <a href="sitemap.html">sitemap.html</a> <a href="sqlar.html">sqlar.html</a> <a href="stricttables.html">stricttables.html</a> <a href="tclsqlite.html">tclsqlite.html</a> <a href="th3.html">th3.html</a> <a href="version3.html">version3.html</a> <a href="vtablist.html">vtablist.html</a> <a href="wal.html">wal.html</a> <a href="walformat.html">walformat.html</a> <a href="whentouse.html">whentouse.html</a> <a href="withoutrowid.html">withoutrowid.html</a> </li>
<li><a href="flextypegood.html">flextypegood.html</a> &rarr; 
<a href="datatype3.html">datatype3.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="quirks.html">quirks.html</a> <a href="sitemap.html">sitemap.html</a> <a href="stricttables.html">stricttables.html</a> </li>
<li><a href="floatingpoint.html">floatingpoint.html</a> &rarr; 
<a href="cli.html">cli.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_aggfunc.html">lang_aggfunc.html</a> <a href="printf.html">printf.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="footprint.html">footprint.html</a> &rarr; 
<a href="about.html">about.html</a> <a href="compile.html">compile.html</a> <a href="different.html">different.html</a> <a href="doclist.html">doclist.html</a> <a href="features.html">features.html</a> <a href="index.html">index.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="foreignkeys.html">foreignkeys.html</a> &rarr; 
<a href="c3ref/blob_open.html">c3ref/blob_open.html</a> <a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="faq.html">faq.html</a> <a href="fullsql.html">fullsql.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_conflict.html">lang_conflict.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_droptable.html">lang_droptable.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="pragma.html">pragma.html</a> <a href="rescode.html">rescode.html</a> <a href="sitemap.html">sitemap.html</a> <a href="stricttables.html">stricttables.html</a> </li>
<li><a href="formatchng.html">formatchng.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="fts3.html">fts3.html</a> &rarr; 
<a href="aff_short.html">aff_short.html</a> <a href="affcase1.html">affcase1.html</a> <a href="amalgamation.html">amalgamation.html</a> <a href="bindptr.html">bindptr.html</a> <a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="cves.html">cves.html</a> <a href="doclist.html">doclist.html</a> <a href="docs.html">docs.html</a> <a href="fts5.html">fts5.html</a> <a href="howtocompile.html">howtocompile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="pragma.html">pragma.html</a> <a href="rbu.html">rbu.html</a> <a href="sitemap.html">sitemap.html</a> <a href="spellfix1.html">spellfix1.html</a> <a href="sqldiff.html">sqldiff.html</a> <a href="th3.html">th3.html</a> <a href="vtab.html">vtab.html</a> <a href="vtablist.html">vtablist.html</a> </li>
<li><a href="fts5.html">fts5.html</a> &rarr; 
<a href="amalgamation.html">amalgamation.html</a> <a href="bindptr.html">bindptr.html</a> <a href="compile.html">compile.html</a> <a href="cves.html">cves.html</a> <a href="doclist.html">doclist.html</a> <a href="fullsql.html">fullsql.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lemon.html">lemon.html</a> <a href="pragma.html">pragma.html</a> <a href="sitemap.html">sitemap.html</a> <a href="sqldiff.html">sqldiff.html</a> <a href="vtab.html">vtab.html</a> <a href="vtablist.html">vtablist.html</a> </li>
<li><a href="fullsql.html">fullsql.html</a> &rarr; 
<a href="about.html">about.html</a> <a href="doclist.html">doclist.html</a> <a href="features.html">features.html</a> <a href="index.html">index.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="gencol.html">gencol.html</a> &rarr; 
<a href="c3ref/c_deterministic.html">c3ref/c_deterministic.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="deterministic.html">deterministic.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="pragma.html">pragma.html</a> <a href="sitemap.html">sitemap.html</a> <a href="stricttables.html">stricttables.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> </li>
<li><a href="geopoly.html">geopoly.html</a> &rarr; 
<a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="getthecode.html">getthecode.html</a> &rarr; 
<a href="amalgamation.html">amalgamation.html</a> <a href="doclist.html">doclist.html</a> <a href="download.html">download.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="hirely.html">hirely.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="index.html">index.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="howitworks.html">howitworks.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="eqp.html">eqp.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="howtocompile.html">howtocompile.html</a> &rarr; 
<a href="amalgamation.html">amalgamation.html</a> <a href="cli.html">cli.html</a> <a href="doclist.html">doclist.html</a> <a href="download.html">download.html</a> <a href="features.html">features.html</a> <a href="fts5.html">fts5.html</a> <a href="getthecode.html">getthecode.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="quickstart.html">quickstart.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="howtocorrupt.html">howtocorrupt.html</a> &rarr; 
<a href="atomiccommit.html">atomiccommit.html</a> <a href="doclist.html">doclist.html</a> <a href="errlog.html">errlog.html</a> <a href="faq.html">faq.html</a> <a href="fts3.html">fts3.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lts.html">lts.html</a> <a href="pragma.html">pragma.html</a> <a href="recovery.html">recovery.html</a> <a href="schematab.html">schematab.html</a> <a href="shortnames.html">shortnames.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="hp1.html">hp1.html</a> &rarr; 
<a href="sitemap.html">sitemap.html</a> </li>
<li><a href="imposter.html">imposter.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="index.html">index.html</a> &rarr; 
<a href="consortium.html">consortium.html</a> <a href="doclist.html">doclist.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="inmemorydb.html">inmemorydb.html</a> &rarr; 
<a href="c3ref/open.html">c3ref/open.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cli.html">cli.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_attach.html">lang_attach.html</a> <a href="pragma.html">pragma.html</a> <a href="sharedcache.html">sharedcache.html</a> <a href="sitemap.html">sitemap.html</a> <a href="tclsqlite.html">tclsqlite.html</a> </li>
<li><a href="intern-v-extern-blob.html">intern-v-extern-blob.html</a> &rarr; 
<a href="aff_short.html">aff_short.html</a> <a href="affcase1.html">affcase1.html</a> <a href="appfileformat.html">appfileformat.html</a> <a href="doclist.html">doclist.html</a> <a href="fasterthanfs.html">fasterthanfs.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> <a href="whyc.html">whyc.html</a> </li>
<li><a href="invalidutf.html">invalidutf.html</a> &rarr; 
<a href="c3ref/errcode.html">c3ref/errcode.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="isolation.html">isolation.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> <a href="useovernet.html">useovernet.html</a> </li>
<li><a href="json1.html">json1.html</a> &rarr; 
<a href="amalgamation.html">amalgamation.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="docs.html">docs.html</a> <a href="features.html">features.html</a> <a href="flextypegood.html">flextypegood.html</a> <a href="fullsql.html">fullsql.html</a> <a href="index.html">index.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_aggfunc.html">lang_aggfunc.html</a> <a href="lang_corefunc.html">lang_corefunc.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="loadext.html">loadext.html</a> <a href="sitemap.html">sitemap.html</a> <a href="testing.html">testing.html</a> <a href="vtab.html">vtab.html</a> <a href="vtablist.html">vtablist.html</a> </li>
<li><a href="keyword_index.html">keyword_index.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="lang.html">lang.html</a> &rarr; 
<a href="about.html">about.html</a> <a href="doclist.html">doclist.html</a> <a href="docs.html">docs.html</a> <a href="index.html">index.html</a> <a href="sitemap.html">sitemap.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> </li>
<li><a href="lang_aggfunc.html">lang_aggfunc.html</a> &rarr; 
<a href="arch.html">arch.html</a> <a href="doclist.html">doclist.html</a> <a href="docs.html">docs.html</a> <a href="floatingpoint.html">floatingpoint.html</a> <a href="fullsql.html">fullsql.html</a> <a href="index.html">index.html</a> <a href="json1.html">json1.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="lang_corefunc.html">lang_corefunc.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_select.html">lang_select.html</a> <a href="lang_with.html">lang_with.html</a> <a href="sitemap.html">sitemap.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> <a href="windowfunctions.html">windowfunctions.html</a> </li>
<li><a href="lang_altertable.html">lang_altertable.html</a> &rarr; 
<a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="faq.html">faq.html</a> <a href="fileformat2.html">fileformat2.html</a> <a href="foreignkeys.html">foreignkeys.html</a> <a href="gencol.html">gencol.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="lang_analyze.html">lang_analyze.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_naming.html">lang_naming.html</a> <a href="pragma.html">pragma.html</a> <a href="schematab.html">schematab.html</a> <a href="sitemap.html">sitemap.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="lang_analyze.html">lang_analyze.html</a> &rarr; 
<a href="appfileformat.html">appfileformat.html</a> <a href="c3ref/stmt_scanstatus.html">c3ref/stmt_scanstatus.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cli.html">cli.html</a> <a href="compile.html">compile.html</a> <a href="dbhash.html">dbhash.html</a> <a href="doclist.html">doclist.html</a> <a href="fileformat2.html">fileformat2.html</a> <a href="isolation.html">isolation.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="optoverview.html">optoverview.html</a> <a href="pragma.html">pragma.html</a> <a href="queryplanner-ng.html">queryplanner-ng.html</a> <a href="queryplanner.html">queryplanner.html</a> <a href="sitemap.html">sitemap.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> </li>
<li><a href="lang_attach.html">lang_attach.html</a> &rarr; 
<a href="atomiccommit.html">atomiccommit.html</a> <a href="bytecodevtab.html">bytecodevtab.html</a> <a href="c3ref/backup_finish.html">c3ref/backup_finish.html</a> <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> <a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/c_dbstatus_options.html">c3ref/c_dbstatus_options.html</a> <a href="c3ref/c_limit_attached.html">c3ref/c_limit_attached.html</a> <a href="c3ref/db_cacheflush.html">c3ref/db_cacheflush.html</a> <a href="c3ref/db_name.html">c3ref/db_name.html</a> <a href="c3ref/file_control.html">c3ref/file_control.html</a> <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> <a href="c3ref/stmt_readonly.html">c3ref/stmt_readonly.html</a> <a href="c3ref/wal_checkpoint_v2.html">c3ref/wal_checkpoint_v2.html</a> <a href="c3ref/wal_hook.html">c3ref/wal_hook.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cintro.html">cintro.html</a> <a href="cli.html">cli.html</a> <a href="compile.html">compile.html</a> <a href="dbpage.html">dbpage.html</a> <a href="different.html">different.html</a> <a href="doclist.html">doclist.html</a> <a href="fts3.html">fts3.html</a> <a href="fullsql.html">fullsql.html</a> <a href="inmemorydb.html">inmemorydb.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_detach.html">lang_detach.html</a> <a href="lang_naming.html">lang_naming.html</a> <a href="lang_vacuum.html">lang_vacuum.html</a> <a href="limits.html">limits.html</a> <a href="lockingv3.html">lockingv3.html</a> <a href="pragma.html">pragma.html</a> <a href="sharedcache.html">sharedcache.html</a> <a href="shortnames.html">shortnames.html</a> <a href="sitemap.html">sitemap.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> <a href="tclsqlite.html">tclsqlite.html</a> <a href="tempfiles.html">tempfiles.html</a> <a href="unionvtab.html">unionvtab.html</a> <a href="uri.html">uri.html</a> <a href="vfs.html">vfs.html</a> <a href="vtab.html">vtab.html</a> <a href="wal.html">wal.html</a> </li>
<li><a href="lang_comment.html">lang_comment.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="sitemap.html">sitemap.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> </li>
<li><a href="lang_conflict.html">lang_conflict.html</a> &rarr; 
<a href="c3ref/blob_open.html">c3ref/blob_open.html</a> <a href="c3ref/c_fail.html">c3ref/c_fail.html</a> <a href="c3ref/c_vtab_constraint_support.html">c3ref/c_vtab_constraint_support.html</a> <a href="c3ref/update_hook.html">c3ref/update_hook.html</a> <a href="c3ref/vtab_on_conflict.html">c3ref/vtab_on_conflict.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="different.html">different.html</a> <a href="doclist.html">doclist.html</a> <a href="fullsql.html">fullsql.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_insert.html">lang_insert.html</a> <a href="lang_replace.html">lang_replace.html</a> <a href="lang_transaction.html">lang_transaction.html</a> <a href="lang_update.html">lang_update.html</a> <a href="lang_upsert.html">lang_upsert.html</a> <a href="sitemap.html">sitemap.html</a> <a href="stricttables.html">stricttables.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> <a href="tclsqlite.html">tclsqlite.html</a> <a href="tempfiles.html">tempfiles.html</a> </li>
<li><a href="lang_corefunc.html">lang_corefunc.html</a> &rarr; 
<a href="arch.html">arch.html</a> <a href="bindptr.html">bindptr.html</a> <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> <a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> <a href="c3ref/c_deterministic.html">c3ref/c_deterministic.html</a> <a href="c3ref/c_source_id.html">c3ref/c_source_id.html</a> <a href="c3ref/compileoption_get.html">c3ref/compileoption_get.html</a> <a href="c3ref/create_function.html">c3ref/create_function.html</a> <a href="c3ref/enable_load_extension.html">c3ref/enable_load_extension.html</a> <a href="c3ref/last_insert_rowid.html">c3ref/last_insert_rowid.html</a> <a href="c3ref/libversion.html">c3ref/libversion.html</a> <a href="c3ref/load_extension.html">c3ref/load_extension.html</a> <a href="c3ref/mprintf.html">c3ref/mprintf.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cli.html">cli.html</a> <a href="compile.html">compile.html</a> <a href="deterministic.html">deterministic.html</a> <a href="doclist.html">doclist.html</a> <a href="docs.html">docs.html</a> <a href="expridx.html">expridx.html</a> <a href="faq.html">faq.html</a> <a href="fts3.html">fts3.html</a> <a href="fts5.html">fts5.html</a> <a href="fullsql.html">fullsql.html</a> <a href="howtocompile.html">howtocompile.html</a> <a href="index.html">index.html</a> <a href="invalidutf.html">invalidutf.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="lang_aggfunc.html">lang_aggfunc.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="lang_datefunc.html">lang_datefunc.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="lang_mathfunc.html">lang_mathfunc.html</a> <a href="loadext.html">loadext.html</a> <a href="nulinstr.html">nulinstr.html</a> <a href="optoverview.html">optoverview.html</a> <a href="pragma.html">pragma.html</a> <a href="printf.html">printf.html</a> <a href="queryplanner-ng.html">queryplanner-ng.html</a> <a href="security.html">security.html</a> <a href="sitemap.html">sitemap.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> <a href="tclsqlite.html">tclsqlite.html</a> <a href="undoredo.html">undoredo.html</a> <a href="windowfunctions.html">windowfunctions.html</a> <a href="withoutrowid.html">withoutrowid.html</a> </li>
<li><a href="lang_createindex.html">lang_createindex.html</a> &rarr; 
<a href="aff_short.html">aff_short.html</a> <a href="appfileformat.html">appfileformat.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="expridx.html">expridx.html</a> <a href="fileformat2.html">fileformat2.html</a> <a href="foreignkeys.html">foreignkeys.html</a> <a href="fullsql.html">fullsql.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_dropindex.html">lang_dropindex.html</a> <a href="lang_upsert.html">lang_upsert.html</a> <a href="limits.html">limits.html</a> <a href="optoverview.html">optoverview.html</a> <a href="partialindex.html">partialindex.html</a> <a href="pragma.html">pragma.html</a> <a href="schematab.html">schematab.html</a> <a href="sitemap.html">sitemap.html</a> <a href="stricttables.html">stricttables.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> <a href="vtab.html">vtab.html</a> <a href="withoutrowid.html">withoutrowid.html</a> </li>
<li><a href="lang_createtable.html">lang_createtable.html</a> &rarr; 
<a href="autoinc.html">autoinc.html</a> <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> <a href="c3ref/c_deterministic.html">c3ref/c_deterministic.html</a> <a href="c3ref/last_insert_rowid.html">c3ref/last_insert_rowid.html</a> <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> <a href="c3ref/randomness.html">c3ref/randomness.html</a> <a href="c3ref/table_column_metadata.html">c3ref/table_column_metadata.html</a> <a href="c3ref/update_hook.html">c3ref/update_hook.html</a> <a href="c3ref/vtab_collation.html">c3ref/vtab_collation.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="conflict.html">conflict.html</a> <a href="csv.html">csv.html</a> <a href="datatype3.html">datatype3.html</a> <a href="deterministic.html">deterministic.html</a> <a href="doclist.html">doclist.html</a> <a href="eqp.html">eqp.html</a> <a href="expridx.html">expridx.html</a> <a href="faq.html">faq.html</a> <a href="fileformat2.html">fileformat2.html</a> <a href="foreignkeys.html">foreignkeys.html</a> <a href="fts3.html">fts3.html</a> <a href="fts5.html">fts5.html</a> <a href="fullsql.html">fullsql.html</a> <a href="gencol.html">gencol.html</a> <a href="imposter.html">imposter.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_conflict.html">lang_conflict.html</a> <a href="lang_corefunc.html">lang_corefunc.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="lang_createvtab.html">lang_createvtab.html</a> <a href="lang_droptable.html">lang_droptable.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="lang_indexedby.html">lang_indexedby.html</a> <a href="lang_insert.html">lang_insert.html</a> <a href="lang_vacuum.html">lang_vacuum.html</a> <a href="optoverview.html">optoverview.html</a> <a href="pragma.html">pragma.html</a> <a href="queryplanner.html">queryplanner.html</a> <a href="quirks.html">quirks.html</a> <a href="rbu.html">rbu.html</a> <a href="rescode.html">rescode.html</a> <a href="rowidtable.html">rowidtable.html</a> <a href="schematab.html">schematab.html</a> <a href="sitemap.html">sitemap.html</a> <a href="sqldiff.html">sqldiff.html</a> <a href="stricttables.html">stricttables.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> <a href="vtab.html">vtab.html</a> <a href="withoutrowid.html">withoutrowid.html</a> </li>
<li><a href="lang_createtrigger.html">lang_createtrigger.html</a> &rarr; 
<a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="fileformat2.html">fileformat2.html</a> <a href="foreignkeys.html">foreignkeys.html</a> <a href="fullsql.html">fullsql.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_conflict.html">lang_conflict.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_createview.html">lang_createview.html</a> <a href="lang_delete.html">lang_delete.html</a> <a href="lang_droptrigger.html">lang_droptrigger.html</a> <a href="lang_insert.html">lang_insert.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_update.html">lang_update.html</a> <a href="lang_with.html">lang_with.html</a> <a href="opcode.html">opcode.html</a> <a href="pragma.html">pragma.html</a> <a href="rescode.html">rescode.html</a> <a href="schematab.html">schematab.html</a> <a href="sitemap.html">sitemap.html</a> <a href="sqldiff.html">sqldiff.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> </li>
<li><a href="lang_createview.html">lang_createview.html</a> &rarr; 
<a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="datatype3.html">datatype3.html</a> <a href="doclist.html">doclist.html</a> <a href="fileformat2.html">fileformat2.html</a> <a href="fullsql.html">fullsql.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_dropview.html">lang_dropview.html</a> <a href="lang_with.html">lang_with.html</a> <a href="pragma.html">pragma.html</a> <a href="schematab.html">schematab.html</a> <a href="sitemap.html">sitemap.html</a> <a href="sqldiff.html">sqldiff.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> </li>
<li><a href="lang_createvtab.html">lang_createvtab.html</a> &rarr; 
<a href="cli.html">cli.html</a> <a href="dbstat.html">dbstat.html</a> <a href="doclist.html">doclist.html</a> <a href="fileformat2.html">fileformat2.html</a> <a href="fts3.html">fts3.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="schematab.html">schematab.html</a> <a href="sitemap.html">sitemap.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="lang_datefunc.html">lang_datefunc.html</a> &rarr; 
<a href="compile.html">compile.html</a> <a href="datatype3.html">datatype3.html</a> <a href="deterministic.html">deterministic.html</a> <a href="doclist.html">doclist.html</a> <a href="docs.html">docs.html</a> <a href="index.html">index.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="lang_corefunc.html">lang_corefunc.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="optoverview.html">optoverview.html</a> <a href="quirks.html">quirks.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="lang_delete.html">lang_delete.html</a> &rarr; 
<a href="c3ref/blob_open.html">c3ref/blob_open.html</a> <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> <a href="c3ref/update_hook.html">c3ref/update_hook.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cli.html">cli.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="foreignkeys.html">foreignkeys.html</a> <a href="fts3.html">fts3.html</a> <a href="fts5.html">fts5.html</a> <a href="fullsql.html">fullsql.html</a> <a href="isolation.html">isolation.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="lang_analyze.html">lang_analyze.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_createview.html">lang_createview.html</a> <a href="lang_droptable.html">lang_droptable.html</a> <a href="lang_indexedby.html">lang_indexedby.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_with.html">lang_with.html</a> <a href="pragma.html">pragma.html</a> <a href="rbu.html">rbu.html</a> <a href="rtree.html">rtree.html</a> <a href="sitemap.html">sitemap.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="lang_detach.html">lang_detach.html</a> &rarr; 
<a href="c3ref/db_filename.html">c3ref/db_filename.html</a> <a href="c3ref/db_name.html">c3ref/db_name.html</a> <a href="c3ref/stmt_readonly.html">c3ref/stmt_readonly.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="different.html">different.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="lang_attach.html">lang_attach.html</a> <a href="sitemap.html">sitemap.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> <a href="tempfiles.html">tempfiles.html</a> </li>
<li><a href="lang_dropindex.html">lang_dropindex.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="lang_naming.html">lang_naming.html</a> <a href="partialindex.html">partialindex.html</a> <a href="sitemap.html">sitemap.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> </li>
<li><a href="lang_droptable.html">lang_droptable.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="foreignkeys.html">foreignkeys.html</a> <a href="fts3.html">fts3.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_analyze.html">lang_analyze.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_createvtab.html">lang_createvtab.html</a> <a href="lang_naming.html">lang_naming.html</a> <a href="rescode.html">rescode.html</a> <a href="rtree.html">rtree.html</a> <a href="sitemap.html">sitemap.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> <a href="unionvtab.html">unionvtab.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="lang_droptrigger.html">lang_droptrigger.html</a> &rarr; 
<a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_naming.html">lang_naming.html</a> <a href="sitemap.html">sitemap.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> </li>
<li><a href="lang_dropview.html">lang_dropview.html</a> &rarr; 
<a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_createview.html">lang_createview.html</a> <a href="lang_naming.html">lang_naming.html</a> <a href="sitemap.html">sitemap.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> </li>
<li><a href="lang_explain.html">lang_explain.html</a> &rarr; 
<a href="c3ref/stmt_explain.html">c3ref/stmt_explain.html</a> <a href="c3ref/stmt_readonly.html">c3ref/stmt_readonly.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="debugging.html">debugging.html</a> <a href="different.html">different.html</a> <a href="doclist.html">doclist.html</a> <a href="eqp.html">eqp.html</a> <a href="howitworks.html">howitworks.html</a> <a href="howtocompile.html">howtocompile.html</a> <a href="lang.html">lang.html</a> <a href="opcode.html">opcode.html</a> <a href="optoverview.html">optoverview.html</a> <a href="pragma.html">pragma.html</a> <a href="sitemap.html">sitemap.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> </li>
<li><a href="lang_expr.html">lang_expr.html</a> &rarr; 
<a href="c3ref/bind_blob.html">c3ref/bind_blob.html</a> <a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> <a href="c3ref/c_limit_attached.html">c3ref/c_limit_attached.html</a> <a href="c3ref/c_stmtstatus_counter.html">c3ref/c_stmtstatus_counter.html</a> <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> <a href="c3ref/expanded_sql.html">c3ref/expanded_sql.html</a> <a href="c3ref/get_auxdata.html">c3ref/get_auxdata.html</a> <a href="c3ref/prepare.html">c3ref/prepare.html</a> <a href="c3ref/profile.html">c3ref/profile.html</a> <a href="c3ref/stmt.html">c3ref/stmt.html</a> <a href="c3ref/strglob.html">c3ref/strglob.html</a> <a href="c3ref/strlike.html">c3ref/strlike.html</a> <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> <a href="c3ref/vtab_collation.html">c3ref/vtab_collation.html</a> <a href="c3ref/vtab_in.html">c3ref/vtab_in.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="carray.html">carray.html</a> <a href="cintro.html">cintro.html</a> <a href="cli.html">cli.html</a> <a href="compile.html">compile.html</a> <a href="datatype3.html">datatype3.html</a> <a href="doclist.html">doclist.html</a> <a href="fts3.html">fts3.html</a> <a href="fullsql.html">fullsql.html</a> <a href="invalidutf.html">invalidutf.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="lang_corefunc.html">lang_corefunc.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_delete.html">lang_delete.html</a> <a href="lang_select.html">lang_select.html</a> <a href="lang_update.html">lang_update.html</a> <a href="lang_vacuum.html">lang_vacuum.html</a> <a href="limits.html">limits.html</a> <a href="nulinstr.html">nulinstr.html</a> <a href="optoverview.html">optoverview.html</a> <a href="partialindex.html">partialindex.html</a> <a href="pragma.html">pragma.html</a> <a href="rowvalue.html">rowvalue.html</a> <a href="sitemap.html">sitemap.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> <a href="vfs.html">vfs.html</a> <a href="vtab.html">vtab.html</a> <a href="windowfunctions.html">windowfunctions.html</a> </li>
<li><a href="lang_indexedby.html">lang_indexedby.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="fullsql.html">fullsql.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="queryplanner-ng.html">queryplanner-ng.html</a> <a href="sitemap.html">sitemap.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> </li>
<li><a href="lang_insert.html">lang_insert.html</a> &rarr; 
<a href="autoinc.html">autoinc.html</a> <a href="c3ref/last_insert_rowid.html">c3ref/last_insert_rowid.html</a> <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> <a href="c3ref/reset.html">c3ref/reset.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="conflict.html">conflict.html</a> <a href="doclist.html">doclist.html</a> <a href="faq.html">faq.html</a> <a href="fts3.html">fts3.html</a> <a href="fts5.html">fts5.html</a> <a href="fullsql.html">fullsql.html</a> <a href="isolation.html">isolation.html</a> <a href="lang.html">lang.html</a> <a href="lang_analyze.html">lang_analyze.html</a> <a href="lang_conflict.html">lang_conflict.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_createview.html">lang_createview.html</a> <a href="lang_replace.html">lang_replace.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_upsert.html">lang_upsert.html</a> <a href="lang_with.html">lang_with.html</a> <a href="pragma.html">pragma.html</a> <a href="rbu.html">rbu.html</a> <a href="rtree.html">rtree.html</a> <a href="sitemap.html">sitemap.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="lang_keywords.html">lang_keywords.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="lang_mathfunc.html">lang_mathfunc.html</a> &rarr; 
<a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="docs.html">docs.html</a> <a href="index.html">index.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_corefunc.html">lang_corefunc.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="lang_naming.html">lang_naming.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_dropview.html">lang_dropview.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="lang_reindex.html">lang_reindex.html</a> &rarr; 
<a href="compile.html">compile.html</a> <a href="dbhash.html">dbhash.html</a> <a href="deterministic.html">deterministic.html</a> <a href="doclist.html">doclist.html</a> <a href="fts3.html">fts3.html</a> <a href="fullsql.html">fullsql.html</a> <a href="imposter.html">imposter.html</a> <a href="lang.html">lang.html</a> <a href="lang_naming.html">lang_naming.html</a> <a href="pragma.html">pragma.html</a> <a href="rescode.html">rescode.html</a> <a href="sitemap.html">sitemap.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> </li>
<li><a href="lang_replace.html">lang_replace.html</a> &rarr; 
<a href="capi3ref.html">capi3ref.html</a> <a href="different.html">different.html</a> <a href="doclist.html">doclist.html</a> <a href="fullsql.html">fullsql.html</a> <a href="lang.html">lang.html</a> <a href="lang_insert.html">lang_insert.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="lang_returning.html">lang_returning.html</a> &rarr; 
<a href="c3ref/reset.html">c3ref/reset.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="lang_delete.html">lang_delete.html</a> <a href="sitemap.html">sitemap.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> </li>
<li><a href="lang_savepoint.html">lang_savepoint.html</a> &rarr; 
<a href="c3ref/stmt_readonly.html">c3ref/stmt_readonly.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="doclist.html">doclist.html</a> <a href="foreignkeys.html">foreignkeys.html</a> <a href="fullsql.html">fullsql.html</a> <a href="howtocorrupt.html">howtocorrupt.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="lang_transaction.html">lang_transaction.html</a> <a href="pragma.html">pragma.html</a> <a href="session.html">session.html</a> <a href="sitemap.html">sitemap.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> </li>
<li><a href="lang_select.html">lang_select.html</a> &rarr; 
<a href="c3ref/c_limit_attached.html">c3ref/c_limit_attached.html</a> <a href="c3ref/column_database_name.html">c3ref/column_database_name.html</a> <a href="c3ref/column_decltype.html">c3ref/column_decltype.html</a> <a href="c3ref/column_name.html">c3ref/column_name.html</a> <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> <a href="c3ref/stmt_readonly.html">c3ref/stmt_readonly.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="datatype3.html">datatype3.html</a> <a href="dbstat.html">dbstat.html</a> <a href="doclist.html">doclist.html</a> <a href="eqp.html">eqp.html</a> <a href="fts3.html">fts3.html</a> <a href="isolation.html">isolation.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="lang_analyze.html">lang_analyze.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_createview.html">lang_createview.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="lang_indexedby.html">lang_indexedby.html</a> <a href="lang_insert.html">lang_insert.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_transaction.html">lang_transaction.html</a> <a href="lang_upsert.html">lang_upsert.html</a> <a href="lang_with.html">lang_with.html</a> <a href="limits.html">limits.html</a> <a href="optoverview.html">optoverview.html</a> <a href="pragma.html">pragma.html</a> <a href="queryplanner-ng.html">queryplanner-ng.html</a> <a href="sitemap.html">sitemap.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> <a href="unionvtab.html">unionvtab.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="lang_transaction.html">lang_transaction.html</a> &rarr; 
<a href="asyncvfs.html">asyncvfs.html</a> <a href="c3ref/c_txn_none.html">c3ref/c_txn_none.html</a> <a href="c3ref/commit_hook.html">c3ref/commit_hook.html</a> <a href="c3ref/get_autocommit.html">c3ref/get_autocommit.html</a> <a href="c3ref/step.html">c3ref/step.html</a> <a href="c3ref/stmt_readonly.html">c3ref/stmt_readonly.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="doclist.html">doclist.html</a> <a href="faq.html">faq.html</a> <a href="foreignkeys.html">foreignkeys.html</a> <a href="fts3.html">fts3.html</a> <a href="fullsql.html">fullsql.html</a> <a href="isolation.html">isolation.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="lang_attach.html">lang_attach.html</a> <a href="lang_savepoint.html">lang_savepoint.html</a> <a href="pragma.html">pragma.html</a> <a href="rescode.html">rescode.html</a> <a href="sitemap.html">sitemap.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> <a href="tempfiles.html">tempfiles.html</a> <a href="wal.html">wal.html</a> </li>
<li><a href="lang_update.html">lang_update.html</a> &rarr; 
<a href="c3ref/blob_open.html">c3ref/blob_open.html</a> <a href="c3ref/column_count.html">c3ref/column_count.html</a> <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> <a href="c3ref/vtab_nochange.html">c3ref/vtab_nochange.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="conflict.html">conflict.html</a> <a href="doclist.html">doclist.html</a> <a href="fts3.html">fts3.html</a> <a href="fts5.html">fts5.html</a> <a href="fullsql.html">fullsql.html</a> <a href="isolation.html">isolation.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_analyze.html">lang_analyze.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_createview.html">lang_createview.html</a> <a href="lang_indexedby.html">lang_indexedby.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_upsert.html">lang_upsert.html</a> <a href="lang_with.html">lang_with.html</a> <a href="pragma.html">pragma.html</a> <a href="rbu.html">rbu.html</a> <a href="rowvalue.html">rowvalue.html</a> <a href="rtree.html">rtree.html</a> <a href="sitemap.html">sitemap.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="lang_upsert.html">lang_upsert.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="fullsql.html">fullsql.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="lang_conflict.html">lang_conflict.html</a> <a href="lang_insert.html">lang_insert.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="pragma.html">pragma.html</a> <a href="sitemap.html">sitemap.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> </li>
<li><a href="lang_vacuum.html">lang_vacuum.html</a> &rarr; 
<a href="backup.html">backup.html</a> <a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cli.html">cli.html</a> <a href="compile.html">compile.html</a> <a href="dbhash.html">dbhash.html</a> <a href="dbstat.html">dbstat.html</a> <a href="doclist.html">doclist.html</a> <a href="faq.html">faq.html</a> <a href="fts3.html">fts3.html</a> <a href="fullsql.html">fullsql.html</a> <a href="howtocorrupt.html">howtocorrupt.html</a> <a href="imposter.html">imposter.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="mmap.html">mmap.html</a> <a href="pragma.html">pragma.html</a> <a href="rbu.html">rbu.html</a> <a href="rowidtable.html">rowidtable.html</a> <a href="sitemap.html">sitemap.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> <a href="tempfiles.html">tempfiles.html</a> <a href="wal.html">wal.html</a> </li>
<li><a href="lang_with.html">lang_with.html</a> &rarr; 
<a href="compile.html">compile.html</a> <a href="csv.html">csv.html</a> <a href="cves.html">cves.html</a> <a href="doclist.html">doclist.html</a> <a href="features.html">features.html</a> <a href="fullsql.html">fullsql.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_select.html">lang_select.html</a> <a href="series.html">series.html</a> <a href="sitemap.html">sitemap.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> <a href="versionnumbers.html">versionnumbers.html</a> </li>
<li><a href="lemon.html">lemon.html</a> &rarr; 
<a href="amalgamation.html">amalgamation.html</a> <a href="arch.html">arch.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="limits.html">limits.html</a> &rarr; 
<a href="appfunc.html">appfunc.html</a> <a href="c3ref/bind_blob.html">c3ref/bind_blob.html</a> <a href="c3ref/c_limit_attached.html">c3ref/c_limit_attached.html</a> <a href="c3ref/limit.html">c3ref/limit.html</a> <a href="c3ref/str_errcode.html">c3ref/str_errcode.html</a> <a href="c3ref/str_new.html">c3ref/str_new.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="datatype3.html">datatype3.html</a> <a href="doclist.html">doclist.html</a> <a href="faq.html">faq.html</a> <a href="features.html">features.html</a> <a href="foreignkeys.html">foreignkeys.html</a> <a href="fts5.html">fts5.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="pragma.html">pragma.html</a> <a href="rescode.html">rescode.html</a> <a href="security.html">security.html</a> <a href="sitemap.html">sitemap.html</a> <a href="testing.html">testing.html</a> </li>
<li><a href="loadext.html">loadext.html</a> &rarr; 
<a href="appfunc.html">appfunc.html</a> <a href="c3ref/api_routines.html">c3ref/api_routines.html</a> <a href="c3ref/auto_extension.html">c3ref/auto_extension.html</a> <a href="c3ref/enable_load_extension.html">c3ref/enable_load_extension.html</a> <a href="c3ref/load_extension.html">c3ref/load_extension.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="carray.html">carray.html</a> <a href="cintro.html">cintro.html</a> <a href="cksumvfs.html">cksumvfs.html</a> <a href="cli.html">cli.html</a> <a href="csv.html">csv.html</a> <a href="doclist.html">doclist.html</a> <a href="fts5.html">fts5.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_aggfunc.html">lang_aggfunc.html</a> <a href="lang_corefunc.html">lang_corefunc.html</a> <a href="memstat.html">memstat.html</a> <a href="rescode.html">rescode.html</a> <a href="series.html">series.html</a> <a href="sitemap.html">sitemap.html</a> <a href="spellfix1.html">spellfix1.html</a> <a href="stmt.html">stmt.html</a> <a href="swarmvtab.html">swarmvtab.html</a> <a href="uintcseq.html">uintcseq.html</a> <a href="unionvtab.html">unionvtab.html</a> <a href="vtab.html">vtab.html</a> <a href="zipfile.html">zipfile.html</a> </li>
<li><a href="lockingv3.html">lockingv3.html</a> &rarr; 
<a href="c3ref/backup_finish.html">c3ref/backup_finish.html</a> <a href="c3ref/c_fcntl_begin_atomic_write.html">c3ref/c_fcntl_begin_atomic_write.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="errlog.html">errlog.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="pragma.html">pragma.html</a> <a href="rescode.html">rescode.html</a> <a href="sharedcache.html">sharedcache.html</a> <a href="shortnames.html">shortnames.html</a> <a href="sitemap.html">sitemap.html</a> <a href="useovernet.html">useovernet.html</a> <a href="version3.html">version3.html</a> <a href="wal.html">wal.html</a> </li>
<li><a href="locrsf.html">locrsf.html</a> &rarr; 
<a href="about.html">about.html</a> <a href="aff_short.html">aff_short.html</a> <a href="appfileformat.html">appfileformat.html</a> <a href="doclist.html">doclist.html</a> <a href="famous.html">famous.html</a> <a href="index.html">index.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lts.html">lts.html</a> <a href="onefile.html">onefile.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="lts.html">lts.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="index.html">index.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> <a href="versionnumbers.html">versionnumbers.html</a> </li>
<li><a href="malloc.html">malloc.html</a> &rarr; 
<a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> <a href="c3ref/c_prepare_normalize.html">c3ref/c_prepare_normalize.html</a> <a href="c3ref/c_status_malloc_count.html">c3ref/c_status_malloc_count.html</a> <a href="c3ref/mem_methods.html">c3ref/mem_methods.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cintro.html">cintro.html</a> <a href="compile.html">compile.html</a> <a href="debugging.html">debugging.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lts.html">lts.html</a> <a href="sitemap.html">sitemap.html</a> <a href="testing.html">testing.html</a> </li>
<li><a href="memstat.html">memstat.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> <a href="vtablist.html">vtablist.html</a> </li>
<li><a href="mmap.html">mmap.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="fasterthanfs.html">fasterthanfs.html</a> <a href="howtocorrupt.html">howtocorrupt.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="mostdeployed.html">mostdeployed.html</a> &rarr; 
<a href="about.html">about.html</a> <a href="appfileformat.html">appfileformat.html</a> <a href="doclist.html">doclist.html</a> <a href="famous.html">famous.html</a> <a href="index.html">index.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> <a href="testing.html">testing.html</a> </li>
<li><a href="np1queryprob.html">np1queryprob.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> <a href="whentouse.html">whentouse.html</a> </li>
<li><a href="nulinstr.html">nulinstr.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="quirks.html">quirks.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="nulls.html">nulls.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="sessionintro.html">sessionintro.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="omitted.html">omitted.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="features.html">features.html</a> <a href="lang.html">lang.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="onefile.html">onefile.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="features.html">features.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="opcode.html">opcode.html</a> &rarr; 
<a href="arch.html">arch.html</a> <a href="bytecodevtab.html">bytecodevtab.html</a> <a href="c3ref/progress_handler.html">c3ref/progress_handler.html</a> <a href="c3ref/vtab_distinct.html">c3ref/vtab_distinct.html</a> <a href="c3ref/vtab_in.html">c3ref/vtab_in.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="debugging.html">debugging.html</a> <a href="different.html">different.html</a> <a href="doclist.html">doclist.html</a> <a href="howitworks.html">howitworks.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_corefunc.html">lang_corefunc.html</a> <a href="lang_explain.html">lang_explain.html</a> <a href="lts.html">lts.html</a> <a href="rowvalue.html">rowvalue.html</a> <a href="sitemap.html">sitemap.html</a> <a href="stmt.html">stmt.html</a> <a href="vdbe.html">vdbe.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="optoverview.html">optoverview.html</a> &rarr; 
<a href="arch.html">arch.html</a> <a href="cli.html">cli.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="eqp.html">eqp.html</a> <a href="fileformat2.html">fileformat2.html</a> <a href="fts3.html">fts3.html</a> <a href="fullsql.html">fullsql.html</a> <a href="howitworks.html">howitworks.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_analyze.html">lang_analyze.html</a> <a href="lang_indexedby.html">lang_indexedby.html</a> <a href="lang_select.html">lang_select.html</a> <a href="lang_with.html">lang_with.html</a> <a href="pragma.html">pragma.html</a> <a href="profile.html">profile.html</a> <a href="queryplanner-ng.html">queryplanner-ng.html</a> <a href="queryplanner.html">queryplanner.html</a> <a href="rescode.html">rescode.html</a> <a href="sitemap.html">sitemap.html</a> <a href="stmt.html">stmt.html</a> </li>
<li><a href="partialindex.html">partialindex.html</a> &rarr; 
<a href="c3ref/c_deterministic.html">c3ref/c_deterministic.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="deterministic.html">deterministic.html</a> <a href="doclist.html">doclist.html</a> <a href="features.html">features.html</a> <a href="fileformat2.html">fileformat2.html</a> <a href="fullsql.html">fullsql.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="pragma.html">pragma.html</a> <a href="sitemap.html">sitemap.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> <a href="versionnumbers.html">versionnumbers.html</a> </li>
<li><a href="pgszchng2016.html">pgszchng2016.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="pragma.html">pragma.html</a> &rarr; 
<a href="aff_short.html">aff_short.html</a> <a href="appfunc.html">appfunc.html</a> <a href="arch.html">arch.html</a> <a href="asyncvfs.html">asyncvfs.html</a> <a href="atomiccommit.html">atomiccommit.html</a> <a href="c3ref/busy_handler.html">c3ref/busy_handler.html</a> <a href="c3ref/busy_timeout.html">c3ref/busy_timeout.html</a> <a href="c3ref/c_access_exists.html">c3ref/c_access_exists.html</a> <a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> <a href="c3ref/c_deterministic.html">c3ref/c_deterministic.html</a> <a href="c3ref/c_fcntl_begin_atomic_write.html">c3ref/c_fcntl_begin_atomic_write.html</a> <a href="c3ref/c_sync_dataonly.html">c3ref/c_sync_dataonly.html</a> <a href="c3ref/compileoption_get.html">c3ref/compileoption_get.html</a> <a href="c3ref/data_count.html">c3ref/data_count.html</a> <a href="c3ref/data_directory.html">c3ref/data_directory.html</a> <a href="c3ref/hard_heap_limit64.html">c3ref/hard_heap_limit64.html</a> <a href="c3ref/limit.html">c3ref/limit.html</a> <a href="c3ref/pcache_methods2.html">c3ref/pcache_methods2.html</a> <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> <a href="c3ref/snapshot_open.html">c3ref/snapshot_open.html</a> <a href="c3ref/temp_directory.html">c3ref/temp_directory.html</a> <a href="c3ref/wal_autocheckpoint.html">c3ref/wal_autocheckpoint.html</a> <a href="c3ref/wal_checkpoint_v2.html">c3ref/wal_checkpoint_v2.html</a> <a href="c3ref/wal_hook.html">c3ref/wal_hook.html</a> <a href="c_interface.html">c_interface.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cli.html">cli.html</a> <a href="compile.html">compile.html</a> <a href="cves.html">cves.html</a> <a href="dbhash.html">dbhash.html</a> <a href="debugging.html">debugging.html</a> <a href="doclist.html">doclist.html</a> <a href="docs.html">docs.html</a> <a href="faq.html">faq.html</a> <a href="fasterthanfs.html">fasterthanfs.html</a> <a href="fileformat2.html">fileformat2.html</a> <a href="foreignkeys.html">foreignkeys.html</a> <a href="fts3.html">fts3.html</a> <a href="fts5.html">fts5.html</a> <a href="gencol.html">gencol.html</a> <a href="howtocorrupt.html">howtocorrupt.html</a> <a href="imposter.html">imposter.html</a> <a href="index.html">index.html</a> <a href="inmemorydb.html">inmemorydb.html</a> <a href="invalidutf.html">invalidutf.html</a> <a href="isolation.html">isolation.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_analyze.html">lang_analyze.html</a> <a href="lang_attach.html">lang_attach.html</a> <a href="lang_conflict.html">lang_conflict.html</a> <a href="lang_corefunc.html">lang_corefunc.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_delete.html">lang_delete.html</a> <a href="lang_explain.html">lang_explain.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="lang_transaction.html">lang_transaction.html</a> <a href="lang_vacuum.html">lang_vacuum.html</a> <a href="limits.html">limits.html</a> <a href="lockingv3.html">lockingv3.html</a> <a href="malloc.html">malloc.html</a> <a href="mmap.html">mmap.html</a> <a href="opcode.html">opcode.html</a> <a href="optoverview.html">optoverview.html</a> <a href="pgszchng2016.html">pgszchng2016.html</a> <a href="psow.html">psow.html</a> <a href="queryplanner-ng.html">queryplanner-ng.html</a> <a href="quirks.html">quirks.html</a> <a href="rescode.html">rescode.html</a> <a href="rtree.html">rtree.html</a> <a href="security.html">security.html</a> <a href="sharedcache.html">sharedcache.html</a> <a href="sitemap.html">sitemap.html</a> <a href="stricttables.html">stricttables.html</a> <a href="syntaxdiagrams.html">syntaxdiagrams.html</a> <a href="tclsqlite.html">tclsqlite.html</a> <a href="tempfiles.html">tempfiles.html</a> <a href="testing.html">testing.html</a> <a href="vdbe.html">vdbe.html</a> <a href="vtab.html">vtab.html</a> <a href="vtablist.html">vtablist.html</a> <a href="wal.html">wal.html</a> <a href="walformat.html">walformat.html</a> <a href="withoutrowid.html">withoutrowid.html</a> </li>
<li><a href="printf.html">printf.html</a> &rarr; 
<a href="arch.html">arch.html</a> <a href="c3ref/mprintf.html">c3ref/mprintf.html</a> <a href="c3ref/str_append.html">c3ref/str_append.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_corefunc.html">lang_corefunc.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="privatebranch.html">privatebranch.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="profile.html">profile.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="prosupport.html">prosupport.html</a> &rarr; 
<a href="about.html">about.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> <a href="support.html">support.html</a> </li>
<li><a href="psow.html">psow.html</a> &rarr; 
<a href="atomiccommit.html">atomiccommit.html</a> <a href="c3ref/open.html">c3ref/open.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> <a href="uri.html">uri.html</a> </li>
<li><a href="qmplan.html">qmplan.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="queryplanner-ng.html">queryplanner-ng.html</a> &rarr; 
<a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="eqp.html">eqp.html</a> <a href="howitworks.html">howitworks.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_indexedby.html">lang_indexedby.html</a> <a href="limits.html">limits.html</a> <a href="optoverview.html">optoverview.html</a> <a href="queryplanner.html">queryplanner.html</a> <a href="sitemap.html">sitemap.html</a> <a href="versionnumbers.html">versionnumbers.html</a> </li>
<li><a href="queryplanner.html">queryplanner.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="eqp.html">eqp.html</a> <a href="fullsql.html">fullsql.html</a> <a href="imposter.html">imposter.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lts.html">lts.html</a> <a href="optoverview.html">optoverview.html</a> <a href="queryplanner-ng.html">queryplanner-ng.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="quickstart.html">quickstart.html</a> &rarr; 
<a href="c3ref/intro.html">c3ref/intro.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="doclist.html">doclist.html</a> <a href="docs.html">docs.html</a> <a href="index.html">index.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="quirks.html">quirks.html</a> &rarr; 
<a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="docs.html">docs.html</a> <a href="index.html">index.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="omitted.html">omitted.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="rbu.html">rbu.html</a> &rarr; 
<a href="amalgamation.html">amalgamation.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="recovery.html">recovery.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="requirements.html">requirements.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="rescode.html">rescode.html</a> &rarr; 
<a href="appfunc.html">appfunc.html</a> <a href="autoinc.html">autoinc.html</a> <a href="backup.html">backup.html</a> <a href="c3ref/auto_extension.html">c3ref/auto_extension.html</a> <a href="c3ref/backup_finish.html">c3ref/backup_finish.html</a> <a href="c3ref/bind_blob.html">c3ref/bind_blob.html</a> <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> <a href="c3ref/blob_read.html">c3ref/blob_read.html</a> <a href="c3ref/blob_write.html">c3ref/blob_write.html</a> <a href="c3ref/busy_handler.html">c3ref/busy_handler.html</a> <a href="c3ref/busy_timeout.html">c3ref/busy_timeout.html</a> <a href="c3ref/c_abort_rollback.html">c3ref/c_abort_rollback.html</a> <a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> <a href="c3ref/c_deny.html">c3ref/c_deny.html</a> <a href="c3ref/c_fail.html">c3ref/c_fail.html</a> <a href="c3ref/c_fcntl_begin_atomic_write.html">c3ref/c_fcntl_begin_atomic_write.html</a> <a href="c3ref/c_vtab_constraint_support.html">c3ref/c_vtab_constraint_support.html</a> <a href="c3ref/close.html">c3ref/close.html</a> <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> <a href="c3ref/config.html">c3ref/config.html</a> <a href="c3ref/constlist.html">c3ref/constlist.html</a> <a href="c3ref/create_function.html">c3ref/create_function.html</a> <a href="c3ref/data_count.html">c3ref/data_count.html</a> <a href="c3ref/db_cacheflush.html">c3ref/db_cacheflush.html</a> <a href="c3ref/db_status.html">c3ref/db_status.html</a> <a href="c3ref/deserialize.html">c3ref/deserialize.html</a> <a href="c3ref/enable_shared_cache.html">c3ref/enable_shared_cache.html</a> <a href="c3ref/errcode.html">c3ref/errcode.html</a> <a href="c3ref/extended_result_codes.html">c3ref/extended_result_codes.html</a> <a href="c3ref/finalize.html">c3ref/finalize.html</a> <a href="c3ref/funclist.html">c3ref/funclist.html</a> <a href="c3ref/get_autocommit.html">c3ref/get_autocommit.html</a> <a href="c3ref/hard_heap_limit64.html">c3ref/hard_heap_limit64.html</a> <a href="c3ref/initialize.html">c3ref/initialize.html</a> <a href="c3ref/interrupt.html">c3ref/interrupt.html</a> <a href="c3ref/intro.html">c3ref/intro.html</a> <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> <a href="c3ref/load_extension.html">c3ref/load_extension.html</a> <a href="c3ref/mutex_alloc.html">c3ref/mutex_alloc.html</a> <a href="c3ref/objlist.html">c3ref/objlist.html</a> <a href="c3ref/open.html">c3ref/open.html</a> <a href="c3ref/prepare.html">c3ref/prepare.html</a> <a href="c3ref/reset.html">c3ref/reset.html</a> <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> <a href="c3ref/snapshot_open.html">c3ref/snapshot_open.html</a> <a href="c3ref/status.html">c3ref/status.html</a> <a href="c3ref/step.html">c3ref/step.html</a> <a href="c3ref/stmt_busy.html">c3ref/stmt_busy.html</a> <a href="c3ref/str_errcode.html">c3ref/str_errcode.html</a> <a href="c3ref/system_errno.html">c3ref/system_errno.html</a> <a href="c3ref/table_column_metadata.html">c3ref/table_column_metadata.html</a> <a href="c3ref/unlock_notify.html">c3ref/unlock_notify.html</a> <a href="c3ref/vfs.html">c3ref/vfs.html</a> <a href="c3ref/vtab_in_first.html">c3ref/vtab_in_first.html</a> <a href="c3ref/vtab_on_conflict.html">c3ref/vtab_on_conflict.html</a> <a href="c3ref/vtab_rhs_value.html">c3ref/vtab_rhs_value.html</a> <a href="c3ref/wal_hook.html">c3ref/wal_hook.html</a> <a href="c3ref/win32_set_directory.html">c3ref/win32_set_directory.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="errlog.html">errlog.html</a> <a href="faq.html">faq.html</a> <a href="fileformat2.html">fileformat2.html</a> <a href="fts5.html">fts5.html</a> <a href="imposter.html">imposter.html</a> <a href="isolation.html">isolation.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_transaction.html">lang_transaction.html</a> <a href="loadext.html">loadext.html</a> <a href="malloc.html">malloc.html</a> <a href="opcode.html">opcode.html</a> <a href="optoverview.html">optoverview.html</a> <a href="pragma.html">pragma.html</a> <a href="rtree.html">rtree.html</a> <a href="session.html">session.html</a> <a href="sitemap.html">sitemap.html</a> <a href="tclsqlite.html">tclsqlite.html</a> <a href="testing.html">testing.html</a> <a href="unlock_notify.html">unlock_notify.html</a> <a href="uri.html">uri.html</a> <a href="vfs.html">vfs.html</a> <a href="vtab.html">vtab.html</a> <a href="wal.html">wal.html</a> </li>
<li><a href="rowidtable.html">rowidtable.html</a> &rarr; 
<a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> <a href="c3ref/update_hook.html">c3ref/update_hook.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sessionintro.html">sessionintro.html</a> <a href="sitemap.html">sitemap.html</a> <a href="unionvtab.html">unionvtab.html</a> </li>
<li><a href="rowvalue.html">rowvalue.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="fullsql.html">fullsql.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="lang_update.html">lang_update.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="rtree.html">rtree.html</a> &rarr; 
<a href="aff_short.html">aff_short.html</a> <a href="amalgamation.html">amalgamation.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="floatingpoint.html">floatingpoint.html</a> <a href="fts5.html">fts5.html</a> <a href="fullsql.html">fullsql.html</a> <a href="geopoly.html">geopoly.html</a> <a href="howtocompile.html">howtocompile.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="rescode.html">rescode.html</a> <a href="sitemap.html">sitemap.html</a> <a href="sqldiff.html">sqldiff.html</a> <a href="th3.html">th3.html</a> <a href="vtab.html">vtab.html</a> <a href="vtablist.html">vtablist.html</a> </li>
<li><a href="schematab.html">schematab.html</a> &rarr; 
<a href="atomiccommit.html">atomiccommit.html</a> <a href="cli.html">cli.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="fileformat2.html">fileformat2.html</a> <a href="foreignkeys.html">foreignkeys.html</a> <a href="imposter.html">imposter.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_droptrigger.html">lang_droptrigger.html</a> <a href="lemon.html">lemon.html</a> <a href="pragma.html">pragma.html</a> <a href="security.html">security.html</a> <a href="sharedcache.html">sharedcache.html</a> <a href="sitemap.html">sitemap.html</a> <a href="unlock_notify.html">unlock_notify.html</a> </li>
<li><a href="security.html">security.html</a> &rarr; 
<a href="cves.html">cves.html</a> <a href="doclist.html">doclist.html</a> <a href="hirely.html">hirely.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="selfcontained.html">selfcontained.html</a> &rarr; 
<a href="about.html">about.html</a> <a href="doclist.html">doclist.html</a> <a href="features.html">features.html</a> <a href="index.html">index.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="series.html">series.html</a> &rarr; 
<a href="cli.html">cli.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> <a href="vtablist.html">vtablist.html</a> </li>
<li><a href="serverless.html">serverless.html</a> &rarr; 
<a href="about.html">about.html</a> <a href="different.html">different.html</a> <a href="doclist.html">doclist.html</a> <a href="howitworks.html">howitworks.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="quirks.html">quirks.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="session.html">session.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="session/intro.html">session/intro.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="session/c_session_config_strmsize.html">session/c_session_config_strmsize.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/constlist.html">session/constlist.html</a> </li>
<li><a href="session/c_session_objconfig_rowid.html">session/c_session_objconfig_rowid.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/constlist.html">session/constlist.html</a> <a href="session/sqlite3session_object_config.html">session/sqlite3session_object_config.html</a> </li>
<li><a href="session/changegroup.html">session/changegroup.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/objlist.html">session/objlist.html</a> <a href="sessionintro.html">sessionintro.html</a> </li>
<li><a href="session/constlist.html">session/constlist.html</a> &rarr; 
<a href="session/c_session_config_strmsize.html">session/c_session_config_strmsize.html</a> <a href="session/c_session_objconfig_rowid.html">session/c_session_objconfig_rowid.html</a> <a href="session/changegroup.html">session/changegroup.html</a> <a href="session/funclist.html">session/funclist.html</a> <a href="session/intro.html">session/intro.html</a> <a href="session/objlist.html">session/objlist.html</a> <a href="session/rebaser.html">session/rebaser.html</a> <a href="session/session.html">session/session.html</a> <a href="session/sqlite3changegroup_add.html">session/sqlite3changegroup_add.html</a> <a href="session/sqlite3changegroup_add_strm.html">session/sqlite3changegroup_add_strm.html</a> <a href="session/sqlite3changegroup_delete.html">session/sqlite3changegroup_delete.html</a> <a href="session/sqlite3changegroup_new.html">session/sqlite3changegroup_new.html</a> <a href="session/sqlite3changegroup_output.html">session/sqlite3changegroup_output.html</a> <a href="session/sqlite3changegroup_schema.html">session/sqlite3changegroup_schema.html</a> <a href="session/sqlite3rebaser_configure.html">session/sqlite3rebaser_configure.html</a> <a href="session/sqlite3rebaser_create.html">session/sqlite3rebaser_create.html</a> <a href="session/sqlite3rebaser_delete.html">session/sqlite3rebaser_delete.html</a> <a href="session/sqlite3rebaser_rebase.html">session/sqlite3rebaser_rebase.html</a> <a href="session/sqlite3session_attach.html">session/sqlite3session_attach.html</a> <a href="session/sqlite3session_config.html">session/sqlite3session_config.html</a> <a href="session/sqlite3session_create.html">session/sqlite3session_create.html</a> <a href="session/sqlite3session_delete.html">session/sqlite3session_delete.html</a> <a href="session/sqlite3session_diff.html">session/sqlite3session_diff.html</a> <a href="session/sqlite3session_enable.html">session/sqlite3session_enable.html</a> <a href="session/sqlite3session_indirect.html">session/sqlite3session_indirect.html</a> <a href="session/sqlite3session_isempty.html">session/sqlite3session_isempty.html</a> <a href="session/sqlite3session_memory_used.html">session/sqlite3session_memory_used.html</a> <a href="session/sqlite3session_object_config.html">session/sqlite3session_object_config.html</a> <a href="session/sqlite3session_patchset.html">session/sqlite3session_patchset.html</a> <a href="session/sqlite3session_table_filter.html">session/sqlite3session_table_filter.html</a> </li>
<li><a href="session/funclist.html">session/funclist.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="session/c_session_config_strmsize.html">session/c_session_config_strmsize.html</a> <a href="session/c_session_objconfig_rowid.html">session/c_session_objconfig_rowid.html</a> <a href="session/changegroup.html">session/changegroup.html</a> <a href="session/constlist.html">session/constlist.html</a> <a href="session/intro.html">session/intro.html</a> <a href="session/objlist.html">session/objlist.html</a> <a href="session/rebaser.html">session/rebaser.html</a> <a href="session/session.html">session/session.html</a> <a href="session/sqlite3changegroup_add.html">session/sqlite3changegroup_add.html</a> <a href="session/sqlite3changegroup_add_strm.html">session/sqlite3changegroup_add_strm.html</a> <a href="session/sqlite3changegroup_delete.html">session/sqlite3changegroup_delete.html</a> <a href="session/sqlite3changegroup_new.html">session/sqlite3changegroup_new.html</a> <a href="session/sqlite3changegroup_output.html">session/sqlite3changegroup_output.html</a> <a href="session/sqlite3changegroup_schema.html">session/sqlite3changegroup_schema.html</a> <a href="session/sqlite3rebaser_configure.html">session/sqlite3rebaser_configure.html</a> <a href="session/sqlite3rebaser_create.html">session/sqlite3rebaser_create.html</a> <a href="session/sqlite3rebaser_delete.html">session/sqlite3rebaser_delete.html</a> <a href="session/sqlite3rebaser_rebase.html">session/sqlite3rebaser_rebase.html</a> <a href="session/sqlite3session_attach.html">session/sqlite3session_attach.html</a> <a href="session/sqlite3session_config.html">session/sqlite3session_config.html</a> <a href="session/sqlite3session_create.html">session/sqlite3session_create.html</a> <a href="session/sqlite3session_delete.html">session/sqlite3session_delete.html</a> <a href="session/sqlite3session_diff.html">session/sqlite3session_diff.html</a> <a href="session/sqlite3session_enable.html">session/sqlite3session_enable.html</a> <a href="session/sqlite3session_indirect.html">session/sqlite3session_indirect.html</a> <a href="session/sqlite3session_isempty.html">session/sqlite3session_isempty.html</a> <a href="session/sqlite3session_memory_used.html">session/sqlite3session_memory_used.html</a> <a href="session/sqlite3session_object_config.html">session/sqlite3session_object_config.html</a> <a href="session/sqlite3session_patchset.html">session/sqlite3session_patchset.html</a> <a href="session/sqlite3session_table_filter.html">session/sqlite3session_table_filter.html</a> </li>
<li><a href="session/intro.html">session/intro.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/c_session_config_strmsize.html">session/c_session_config_strmsize.html</a> <a href="session/c_session_objconfig_rowid.html">session/c_session_objconfig_rowid.html</a> <a href="session/changegroup.html">session/changegroup.html</a> <a href="session/constlist.html">session/constlist.html</a> <a href="session/funclist.html">session/funclist.html</a> <a href="session/objlist.html">session/objlist.html</a> <a href="session/rebaser.html">session/rebaser.html</a> <a href="session/session.html">session/session.html</a> <a href="session/sqlite3changegroup_add.html">session/sqlite3changegroup_add.html</a> <a href="session/sqlite3changegroup_add_strm.html">session/sqlite3changegroup_add_strm.html</a> <a href="session/sqlite3changegroup_delete.html">session/sqlite3changegroup_delete.html</a> <a href="session/sqlite3changegroup_new.html">session/sqlite3changegroup_new.html</a> <a href="session/sqlite3changegroup_output.html">session/sqlite3changegroup_output.html</a> <a href="session/sqlite3changegroup_schema.html">session/sqlite3changegroup_schema.html</a> <a href="session/sqlite3rebaser_configure.html">session/sqlite3rebaser_configure.html</a> <a href="session/sqlite3rebaser_create.html">session/sqlite3rebaser_create.html</a> <a href="session/sqlite3rebaser_delete.html">session/sqlite3rebaser_delete.html</a> <a href="session/sqlite3rebaser_rebase.html">session/sqlite3rebaser_rebase.html</a> <a href="session/sqlite3session_attach.html">session/sqlite3session_attach.html</a> <a href="session/sqlite3session_config.html">session/sqlite3session_config.html</a> <a href="session/sqlite3session_create.html">session/sqlite3session_create.html</a> <a href="session/sqlite3session_delete.html">session/sqlite3session_delete.html</a> <a href="session/sqlite3session_diff.html">session/sqlite3session_diff.html</a> <a href="session/sqlite3session_enable.html">session/sqlite3session_enable.html</a> <a href="session/sqlite3session_indirect.html">session/sqlite3session_indirect.html</a> <a href="session/sqlite3session_isempty.html">session/sqlite3session_isempty.html</a> <a href="session/sqlite3session_memory_used.html">session/sqlite3session_memory_used.html</a> <a href="session/sqlite3session_object_config.html">session/sqlite3session_object_config.html</a> <a href="session/sqlite3session_patchset.html">session/sqlite3session_patchset.html</a> <a href="session/sqlite3session_table_filter.html">session/sqlite3session_table_filter.html</a> <a href="sessionintro.html">sessionintro.html</a> </li>
<li><a href="session/objlist.html">session/objlist.html</a> &rarr; 
<a href="session/c_session_config_strmsize.html">session/c_session_config_strmsize.html</a> <a href="session/c_session_objconfig_rowid.html">session/c_session_objconfig_rowid.html</a> <a href="session/changegroup.html">session/changegroup.html</a> <a href="session/constlist.html">session/constlist.html</a> <a href="session/funclist.html">session/funclist.html</a> <a href="session/intro.html">session/intro.html</a> <a href="session/rebaser.html">session/rebaser.html</a> <a href="session/session.html">session/session.html</a> <a href="session/sqlite3changegroup_add.html">session/sqlite3changegroup_add.html</a> <a href="session/sqlite3changegroup_add_strm.html">session/sqlite3changegroup_add_strm.html</a> <a href="session/sqlite3changegroup_delete.html">session/sqlite3changegroup_delete.html</a> <a href="session/sqlite3changegroup_new.html">session/sqlite3changegroup_new.html</a> <a href="session/sqlite3changegroup_output.html">session/sqlite3changegroup_output.html</a> <a href="session/sqlite3changegroup_schema.html">session/sqlite3changegroup_schema.html</a> <a href="session/sqlite3rebaser_configure.html">session/sqlite3rebaser_configure.html</a> <a href="session/sqlite3rebaser_create.html">session/sqlite3rebaser_create.html</a> <a href="session/sqlite3rebaser_delete.html">session/sqlite3rebaser_delete.html</a> <a href="session/sqlite3rebaser_rebase.html">session/sqlite3rebaser_rebase.html</a> <a href="session/sqlite3session_attach.html">session/sqlite3session_attach.html</a> <a href="session/sqlite3session_config.html">session/sqlite3session_config.html</a> <a href="session/sqlite3session_create.html">session/sqlite3session_create.html</a> <a href="session/sqlite3session_delete.html">session/sqlite3session_delete.html</a> <a href="session/sqlite3session_diff.html">session/sqlite3session_diff.html</a> <a href="session/sqlite3session_enable.html">session/sqlite3session_enable.html</a> <a href="session/sqlite3session_indirect.html">session/sqlite3session_indirect.html</a> <a href="session/sqlite3session_isempty.html">session/sqlite3session_isempty.html</a> <a href="session/sqlite3session_memory_used.html">session/sqlite3session_memory_used.html</a> <a href="session/sqlite3session_object_config.html">session/sqlite3session_object_config.html</a> <a href="session/sqlite3session_patchset.html">session/sqlite3session_patchset.html</a> <a href="session/sqlite3session_table_filter.html">session/sqlite3session_table_filter.html</a> </li>
<li><a href="session/rebaser.html">session/rebaser.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/objlist.html">session/objlist.html</a> </li>
<li><a href="session/session.html">session/session.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/objlist.html">session/objlist.html</a> </li>
<li><a href="session/sqlite3changegroup_add.html">session/sqlite3changegroup_add.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/changegroup.html">session/changegroup.html</a> <a href="session/funclist.html">session/funclist.html</a> </li>
<li><a href="session/sqlite3changegroup_add_strm.html">session/sqlite3changegroup_add_strm.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/funclist.html">session/funclist.html</a> </li>
<li><a href="session/sqlite3changegroup_delete.html">session/sqlite3changegroup_delete.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/changegroup.html">session/changegroup.html</a> <a href="session/funclist.html">session/funclist.html</a> </li>
<li><a href="session/sqlite3changegroup_new.html">session/sqlite3changegroup_new.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/changegroup.html">session/changegroup.html</a> <a href="session/funclist.html">session/funclist.html</a> </li>
<li><a href="session/sqlite3changegroup_output.html">session/sqlite3changegroup_output.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/changegroup.html">session/changegroup.html</a> <a href="session/funclist.html">session/funclist.html</a> </li>
<li><a href="session/sqlite3changegroup_schema.html">session/sqlite3changegroup_schema.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/funclist.html">session/funclist.html</a> </li>
<li><a href="session/sqlite3rebaser_configure.html">session/sqlite3rebaser_configure.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/funclist.html">session/funclist.html</a> </li>
<li><a href="session/sqlite3rebaser_create.html">session/sqlite3rebaser_create.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/funclist.html">session/funclist.html</a> </li>
<li><a href="session/sqlite3rebaser_delete.html">session/sqlite3rebaser_delete.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/funclist.html">session/funclist.html</a> </li>
<li><a href="session/sqlite3rebaser_rebase.html">session/sqlite3rebaser_rebase.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/funclist.html">session/funclist.html</a> </li>
<li><a href="session/sqlite3session_attach.html">session/sqlite3session_attach.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/funclist.html">session/funclist.html</a> <a href="session/session.html">session/session.html</a> <a href="session/sqlite3session_diff.html">session/sqlite3session_diff.html</a> <a href="sessionintro.html">sessionintro.html</a> </li>
<li><a href="session/sqlite3session_config.html">session/sqlite3session_config.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/funclist.html">session/funclist.html</a> </li>
<li><a href="session/sqlite3session_create.html">session/sqlite3session_create.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/funclist.html">session/funclist.html</a> <a href="session/session.html">session/session.html</a> <a href="session/sqlite3session_delete.html">session/sqlite3session_delete.html</a> <a href="sessionintro.html">sessionintro.html</a> </li>
<li><a href="session/sqlite3session_delete.html">session/sqlite3session_delete.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/funclist.html">session/funclist.html</a> <a href="session/session.html">session/session.html</a> <a href="session/sqlite3session_create.html">session/sqlite3session_create.html</a> <a href="sessionintro.html">sessionintro.html</a> </li>
<li><a href="session/sqlite3session_diff.html">session/sqlite3session_diff.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/funclist.html">session/funclist.html</a> <a href="session/session.html">session/session.html</a> </li>
<li><a href="session/sqlite3session_enable.html">session/sqlite3session_enable.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/funclist.html">session/funclist.html</a> <a href="session/session.html">session/session.html</a> </li>
<li><a href="session/sqlite3session_indirect.html">session/sqlite3session_indirect.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/funclist.html">session/funclist.html</a> <a href="session/session.html">session/session.html</a> </li>
<li><a href="session/sqlite3session_isempty.html">session/sqlite3session_isempty.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/funclist.html">session/funclist.html</a> </li>
<li><a href="session/sqlite3session_memory_used.html">session/sqlite3session_memory_used.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/funclist.html">session/funclist.html</a> </li>
<li><a href="session/sqlite3session_object_config.html">session/sqlite3session_object_config.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/funclist.html">session/funclist.html</a> <a href="session/session.html">session/session.html</a> </li>
<li><a href="session/sqlite3session_patchset.html">session/sqlite3session_patchset.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/funclist.html">session/funclist.html</a> <a href="session/session.html">session/session.html</a> <a href="session/sqlite3changegroup_add_strm.html">session/sqlite3changegroup_add_strm.html</a> <a href="sessionintro.html">sessionintro.html</a> </li>
<li><a href="session/sqlite3session_table_filter.html">session/sqlite3session_table_filter.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/funclist.html">session/funclist.html</a> <a href="session/session.html">session/session.html</a> </li>
<li><a href="sessionintro.html">sessionintro.html</a> &rarr; 
<a href="amalgamation.html">amalgamation.html</a> <a href="compile.html">compile.html</a> <a href="cves.html">cves.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="session.html">session.html</a> <a href="session/changegroup.html">session/changegroup.html</a> <a href="session/intro.html">session/intro.html</a> <a href="session/session.html">session/session.html</a> <a href="sitemap.html">sitemap.html</a> <a href="sqldiff.html">sqldiff.html</a> </li>
<li><a href="sharedcache.html">sharedcache.html</a> &rarr; 
<a href="c3ref/backup_finish.html">c3ref/backup_finish.html</a> <a href="c3ref/c_dbstatus_options.html">c3ref/c_dbstatus_options.html</a> <a href="c3ref/enable_shared_cache.html">c3ref/enable_shared_cache.html</a> <a href="c3ref/open.html">c3ref/open.html</a> <a href="c3ref/unlock_notify.html">c3ref/unlock_notify.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="docs.html">docs.html</a> <a href="inmemorydb.html">inmemorydb.html</a> <a href="isolation.html">isolation.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_detach.html">lang_detach.html</a> <a href="pragma.html">pragma.html</a> <a href="rescode.html">rescode.html</a> <a href="sitemap.html">sitemap.html</a> <a href="uri.html">uri.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="shortnames.html">shortnames.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="howtocorrupt.html">howtocorrupt.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="sitemap.html">sitemap.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> </li>
<li><a href="speed.html">speed.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="spellfix1.html">spellfix1.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> <a href="vtablist.html">vtablist.html</a> </li>
<li><a href="sqlanalyze.html">sqlanalyze.html</a> &rarr; 
<a href="dbstat.html">dbstat.html</a> <a href="doclist.html">doclist.html</a> <a href="docs.html">docs.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> <a href="vtablist.html">vtablist.html</a> </li>
<li><a href="sqlar.html">sqlar.html</a> &rarr; 
<a href="appfileformat.html">appfileformat.html</a> <a href="cli.html">cli.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="index.html">index.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> <a href="whentouse.html">whentouse.html</a> <a href="whynotgit.html">whynotgit.html</a> </li>
<li><a href="sqldiff.html">sqldiff.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="rbu.html">rbu.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="stmt.html">stmt.html</a> &rarr; 
<a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> <a href="vtablist.html">vtablist.html</a> </li>
<li><a href="stricttables.html">stricttables.html</a> &rarr; 
<a href="datatype3.html">datatype3.html</a> <a href="doclist.html">doclist.html</a> <a href="flextypegood.html">flextypegood.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="pragma.html">pragma.html</a> <a href="quirks.html">quirks.html</a> <a href="recovery.html">recovery.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="support.html">support.html</a> &rarr; 
<a href="bindptr.html">bindptr.html</a> <a href="doclist.html">doclist.html</a> <a href="fasterthanfs.html">fasterthanfs.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="qmplan.html">qmplan.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="swarmvtab.html">swarmvtab.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> <a href="vtablist.html">vtablist.html</a> </li>
<li><a href="syntax.html">syntax.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="syntax/aggregate-function-invocation.html">syntax/aggregate-function-invocation.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_aggfunc.html">lang_aggfunc.html</a> <a href="lang_expr.html">lang_expr.html</a> </li>
<li><a href="syntax/alter-table-stmt.html">syntax/alter-table-stmt.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_altertable.html">lang_altertable.html</a> </li>
<li><a href="syntax/analyze-stmt.html">syntax/analyze-stmt.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_analyze.html">lang_analyze.html</a> </li>
<li><a href="syntax/attach-stmt.html">syntax/attach-stmt.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_attach.html">lang_attach.html</a> </li>
<li><a href="syntax/begin-stmt.html">syntax/begin-stmt.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_transaction.html">lang_transaction.html</a> </li>
<li><a href="syntax/column-constraint.html">syntax/column-constraint.html</a> &rarr; 
<a href="gencol.html">gencol.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_createtable.html">lang_createtable.html</a> </li>
<li><a href="syntax/column-def.html">syntax/column-def.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_createtable.html">lang_createtable.html</a> </li>
<li><a href="syntax/column-name-list.html">syntax/column-name-list.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_insert.html">lang_insert.html</a> <a href="lang_update.html">lang_update.html</a> <a href="lang_upsert.html">lang_upsert.html</a> </li>
<li><a href="syntax/comment-syntax.html">syntax/comment-syntax.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_comment.html">lang_comment.html</a> </li>
<li><a href="syntax/commit-stmt.html">syntax/commit-stmt.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_transaction.html">lang_transaction.html</a> </li>
<li><a href="syntax/common-table-expression.html">syntax/common-table-expression.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_aggfunc.html">lang_aggfunc.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_attach.html">lang_attach.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_createview.html">lang_createview.html</a> <a href="lang_delete.html">lang_delete.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="lang_insert.html">lang_insert.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_select.html">lang_select.html</a> <a href="lang_update.html">lang_update.html</a> <a href="lang_upsert.html">lang_upsert.html</a> <a href="lang_with.html">lang_with.html</a> <a href="partialindex.html">partialindex.html</a> <a href="windowfunctions.html">windowfunctions.html</a> </li>
<li><a href="syntax/compound-operator.html">syntax/compound-operator.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_aggfunc.html">lang_aggfunc.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_attach.html">lang_attach.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_createview.html">lang_createview.html</a> <a href="lang_delete.html">lang_delete.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="lang_insert.html">lang_insert.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_select.html">lang_select.html</a> <a href="lang_update.html">lang_update.html</a> <a href="lang_upsert.html">lang_upsert.html</a> <a href="lang_with.html">lang_with.html</a> <a href="partialindex.html">partialindex.html</a> <a href="windowfunctions.html">windowfunctions.html</a> </li>
<li><a href="syntax/compound-select-stmt.html">syntax/compound-select-stmt.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_select.html">lang_select.html</a> </li>
<li><a href="syntax/conflict-clause.html">syntax/conflict-clause.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_conflict.html">lang_conflict.html</a> <a href="lang_createtable.html">lang_createtable.html</a> </li>
<li><a href="syntax/create-index-stmt.html">syntax/create-index-stmt.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="partialindex.html">partialindex.html</a> </li>
<li><a href="syntax/create-table-stmt.html">syntax/create-table-stmt.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_createtable.html">lang_createtable.html</a> </li>
<li><a href="syntax/create-trigger-stmt.html">syntax/create-trigger-stmt.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> </li>
<li><a href="syntax/create-view-stmt.html">syntax/create-view-stmt.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_createview.html">lang_createview.html</a> </li>
<li><a href="syntax/create-virtual-table-stmt.html">syntax/create-virtual-table-stmt.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_createvtab.html">lang_createvtab.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="syntax/cte-table-name.html">syntax/cte-table-name.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_with.html">lang_with.html</a> </li>
<li><a href="syntax/delete-stmt-limited.html">syntax/delete-stmt-limited.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_delete.html">lang_delete.html</a> </li>
<li><a href="syntax/delete-stmt.html">syntax/delete-stmt.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_delete.html">lang_delete.html</a> </li>
<li><a href="syntax/detach-stmt.html">syntax/detach-stmt.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_detach.html">lang_detach.html</a> </li>
<li><a href="syntax/drop-index-stmt.html">syntax/drop-index-stmt.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_dropindex.html">lang_dropindex.html</a> </li>
<li><a href="syntax/drop-table-stmt.html">syntax/drop-table-stmt.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_droptable.html">lang_droptable.html</a> </li>
<li><a href="syntax/drop-trigger-stmt.html">syntax/drop-trigger-stmt.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_droptrigger.html">lang_droptrigger.html</a> </li>
<li><a href="syntax/drop-view-stmt.html">syntax/drop-view-stmt.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_dropview.html">lang_dropview.html</a> </li>
<li><a href="syntax/expr.html">syntax/expr.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_aggfunc.html">lang_aggfunc.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_attach.html">lang_attach.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_createview.html">lang_createview.html</a> <a href="lang_delete.html">lang_delete.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="lang_insert.html">lang_insert.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_select.html">lang_select.html</a> <a href="lang_update.html">lang_update.html</a> <a href="lang_upsert.html">lang_upsert.html</a> <a href="lang_with.html">lang_with.html</a> <a href="partialindex.html">partialindex.html</a> <a href="windowfunctions.html">windowfunctions.html</a> </li>
<li><a href="syntax/factored-select-stmt.html">syntax/factored-select-stmt.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_select.html">lang_select.html</a> </li>
<li><a href="syntax/filter-clause.html">syntax/filter-clause.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_aggfunc.html">lang_aggfunc.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_attach.html">lang_attach.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_createview.html">lang_createview.html</a> <a href="lang_delete.html">lang_delete.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="lang_insert.html">lang_insert.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_select.html">lang_select.html</a> <a href="lang_update.html">lang_update.html</a> <a href="lang_upsert.html">lang_upsert.html</a> <a href="lang_with.html">lang_with.html</a> <a href="partialindex.html">partialindex.html</a> <a href="windowfunctions.html">windowfunctions.html</a> </li>
<li><a href="syntax/foreign-key-clause.html">syntax/foreign-key-clause.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_createtable.html">lang_createtable.html</a> </li>
<li><a href="syntax/frame-spec.html">syntax/frame-spec.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_aggfunc.html">lang_aggfunc.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_attach.html">lang_attach.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_createview.html">lang_createview.html</a> <a href="lang_delete.html">lang_delete.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="lang_insert.html">lang_insert.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_select.html">lang_select.html</a> <a href="lang_update.html">lang_update.html</a> <a href="lang_upsert.html">lang_upsert.html</a> <a href="lang_with.html">lang_with.html</a> <a href="partialindex.html">partialindex.html</a> <a href="windowfunctions.html">windowfunctions.html</a> </li>
<li><a href="syntax/function-arguments.html">syntax/function-arguments.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_aggfunc.html">lang_aggfunc.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_attach.html">lang_attach.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_createview.html">lang_createview.html</a> <a href="lang_delete.html">lang_delete.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="lang_insert.html">lang_insert.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_select.html">lang_select.html</a> <a href="lang_update.html">lang_update.html</a> <a href="lang_upsert.html">lang_upsert.html</a> <a href="lang_with.html">lang_with.html</a> <a href="partialindex.html">partialindex.html</a> <a href="windowfunctions.html">windowfunctions.html</a> </li>
<li><a href="syntax/indexed-column.html">syntax/indexed-column.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_insert.html">lang_insert.html</a> <a href="lang_upsert.html">lang_upsert.html</a> <a href="partialindex.html">partialindex.html</a> </li>
<li><a href="syntax/insert-stmt.html">syntax/insert-stmt.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_insert.html">lang_insert.html</a> </li>
<li><a href="syntax/join-clause.html">syntax/join-clause.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_aggfunc.html">lang_aggfunc.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_attach.html">lang_attach.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_createview.html">lang_createview.html</a> <a href="lang_delete.html">lang_delete.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="lang_insert.html">lang_insert.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_select.html">lang_select.html</a> <a href="lang_update.html">lang_update.html</a> <a href="lang_upsert.html">lang_upsert.html</a> <a href="lang_with.html">lang_with.html</a> <a href="partialindex.html">partialindex.html</a> <a href="windowfunctions.html">windowfunctions.html</a> </li>
<li><a href="syntax/join-constraint.html">syntax/join-constraint.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_aggfunc.html">lang_aggfunc.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_attach.html">lang_attach.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_createview.html">lang_createview.html</a> <a href="lang_delete.html">lang_delete.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="lang_insert.html">lang_insert.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_select.html">lang_select.html</a> <a href="lang_update.html">lang_update.html</a> <a href="lang_upsert.html">lang_upsert.html</a> <a href="lang_with.html">lang_with.html</a> <a href="partialindex.html">partialindex.html</a> <a href="windowfunctions.html">windowfunctions.html</a> </li>
<li><a href="syntax/join-operator.html">syntax/join-operator.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_aggfunc.html">lang_aggfunc.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_attach.html">lang_attach.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_createview.html">lang_createview.html</a> <a href="lang_delete.html">lang_delete.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="lang_insert.html">lang_insert.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_select.html">lang_select.html</a> <a href="lang_update.html">lang_update.html</a> <a href="lang_upsert.html">lang_upsert.html</a> <a href="lang_with.html">lang_with.html</a> <a href="partialindex.html">partialindex.html</a> <a href="windowfunctions.html">windowfunctions.html</a> </li>
<li><a href="syntax/literal-value.html">syntax/literal-value.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_aggfunc.html">lang_aggfunc.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_attach.html">lang_attach.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_createview.html">lang_createview.html</a> <a href="lang_delete.html">lang_delete.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="lang_insert.html">lang_insert.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_select.html">lang_select.html</a> <a href="lang_update.html">lang_update.html</a> <a href="lang_upsert.html">lang_upsert.html</a> <a href="lang_with.html">lang_with.html</a> <a href="partialindex.html">partialindex.html</a> <a href="windowfunctions.html">windowfunctions.html</a> </li>
<li><a href="syntax/numeric-literal.html">syntax/numeric-literal.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_expr.html">lang_expr.html</a> </li>
<li><a href="syntax/ordering-term.html">syntax/ordering-term.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_aggfunc.html">lang_aggfunc.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_attach.html">lang_attach.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_createview.html">lang_createview.html</a> <a href="lang_delete.html">lang_delete.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="lang_insert.html">lang_insert.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_select.html">lang_select.html</a> <a href="lang_update.html">lang_update.html</a> <a href="lang_upsert.html">lang_upsert.html</a> <a href="lang_with.html">lang_with.html</a> <a href="partialindex.html">partialindex.html</a> <a href="windowfunctions.html">windowfunctions.html</a> </li>
<li><a href="syntax/over-clause.html">syntax/over-clause.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_aggfunc.html">lang_aggfunc.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_attach.html">lang_attach.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_createview.html">lang_createview.html</a> <a href="lang_delete.html">lang_delete.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="lang_insert.html">lang_insert.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_select.html">lang_select.html</a> <a href="lang_update.html">lang_update.html</a> <a href="lang_upsert.html">lang_upsert.html</a> <a href="lang_with.html">lang_with.html</a> <a href="partialindex.html">partialindex.html</a> <a href="windowfunctions.html">windowfunctions.html</a> </li>
<li><a href="syntax/pragma-stmt.html">syntax/pragma-stmt.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="pragma.html">pragma.html</a> </li>
<li><a href="syntax/pragma-value.html">syntax/pragma-value.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="pragma.html">pragma.html</a> </li>
<li><a href="syntax/qualified-table-name.html">syntax/qualified-table-name.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_delete.html">lang_delete.html</a> <a href="lang_indexedby.html">lang_indexedby.html</a> <a href="lang_update.html">lang_update.html</a> </li>
<li><a href="syntax/raise-function.html">syntax/raise-function.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_aggfunc.html">lang_aggfunc.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_attach.html">lang_attach.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_createview.html">lang_createview.html</a> <a href="lang_delete.html">lang_delete.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="lang_insert.html">lang_insert.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_select.html">lang_select.html</a> <a href="lang_update.html">lang_update.html</a> <a href="lang_upsert.html">lang_upsert.html</a> <a href="lang_with.html">lang_with.html</a> <a href="partialindex.html">partialindex.html</a> <a href="windowfunctions.html">windowfunctions.html</a> </li>
<li><a href="syntax/recursive-cte.html">syntax/recursive-cte.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_with.html">lang_with.html</a> </li>
<li><a href="syntax/reindex-stmt.html">syntax/reindex-stmt.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_reindex.html">lang_reindex.html</a> </li>
<li><a href="syntax/release-stmt.html">syntax/release-stmt.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_savepoint.html">lang_savepoint.html</a> </li>
<li><a href="syntax/result-column.html">syntax/result-column.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_aggfunc.html">lang_aggfunc.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_attach.html">lang_attach.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_createview.html">lang_createview.html</a> <a href="lang_delete.html">lang_delete.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="lang_insert.html">lang_insert.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_select.html">lang_select.html</a> <a href="lang_update.html">lang_update.html</a> <a href="lang_upsert.html">lang_upsert.html</a> <a href="lang_with.html">lang_with.html</a> <a href="partialindex.html">partialindex.html</a> <a href="windowfunctions.html">windowfunctions.html</a> </li>
<li><a href="syntax/returning-clause.html">syntax/returning-clause.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_delete.html">lang_delete.html</a> <a href="lang_insert.html">lang_insert.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_update.html">lang_update.html</a> </li>
<li><a href="syntax/rollback-stmt.html">syntax/rollback-stmt.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_savepoint.html">lang_savepoint.html</a> <a href="lang_transaction.html">lang_transaction.html</a> </li>
<li><a href="syntax/savepoint-stmt.html">syntax/savepoint-stmt.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_savepoint.html">lang_savepoint.html</a> </li>
<li><a href="syntax/select-core.html">syntax/select-core.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_select.html">lang_select.html</a> </li>
<li><a href="syntax/select-stmt.html">syntax/select-stmt.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_aggfunc.html">lang_aggfunc.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_attach.html">lang_attach.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_createview.html">lang_createview.html</a> <a href="lang_delete.html">lang_delete.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="lang_insert.html">lang_insert.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_select.html">lang_select.html</a> <a href="lang_update.html">lang_update.html</a> <a href="lang_upsert.html">lang_upsert.html</a> <a href="lang_with.html">lang_with.html</a> <a href="partialindex.html">partialindex.html</a> <a href="windowfunctions.html">windowfunctions.html</a> </li>
<li><a href="syntax/signed-number.html">syntax/signed-number.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_aggfunc.html">lang_aggfunc.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_attach.html">lang_attach.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_createview.html">lang_createview.html</a> <a href="lang_delete.html">lang_delete.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="lang_insert.html">lang_insert.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_select.html">lang_select.html</a> <a href="lang_update.html">lang_update.html</a> <a href="lang_upsert.html">lang_upsert.html</a> <a href="lang_with.html">lang_with.html</a> <a href="partialindex.html">partialindex.html</a> <a href="pragma.html">pragma.html</a> <a href="windowfunctions.html">windowfunctions.html</a> </li>
<li><a href="syntax/simple-function-invocation.html">syntax/simple-function-invocation.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_corefunc.html">lang_corefunc.html</a> <a href="lang_expr.html">lang_expr.html</a> </li>
<li><a href="syntax/simple-select-stmt.html">syntax/simple-select-stmt.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_select.html">lang_select.html</a> </li>
<li><a href="syntax/sql-stmt-list.html">syntax/sql-stmt-list.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> </li>
<li><a href="syntax/sql-stmt.html">syntax/sql-stmt.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="lang_explain.html">lang_explain.html</a> </li>
<li><a href="syntax/table-constraint.html">syntax/table-constraint.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_createtable.html">lang_createtable.html</a> </li>
<li><a href="syntax/table-options.html">syntax/table-options.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_createtable.html">lang_createtable.html</a> </li>
<li><a href="syntax/table-or-subquery.html">syntax/table-or-subquery.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_aggfunc.html">lang_aggfunc.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_attach.html">lang_attach.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_createview.html">lang_createview.html</a> <a href="lang_delete.html">lang_delete.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="lang_insert.html">lang_insert.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_select.html">lang_select.html</a> <a href="lang_update.html">lang_update.html</a> <a href="lang_upsert.html">lang_upsert.html</a> <a href="lang_with.html">lang_with.html</a> <a href="partialindex.html">partialindex.html</a> <a href="windowfunctions.html">windowfunctions.html</a> </li>
<li><a href="syntax/type-name.html">syntax/type-name.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_aggfunc.html">lang_aggfunc.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_attach.html">lang_attach.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_createview.html">lang_createview.html</a> <a href="lang_delete.html">lang_delete.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="lang_insert.html">lang_insert.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_select.html">lang_select.html</a> <a href="lang_update.html">lang_update.html</a> <a href="lang_upsert.html">lang_upsert.html</a> <a href="lang_with.html">lang_with.html</a> <a href="partialindex.html">partialindex.html</a> <a href="windowfunctions.html">windowfunctions.html</a> </li>
<li><a href="syntax/update-stmt-limited.html">syntax/update-stmt-limited.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_update.html">lang_update.html</a> </li>
<li><a href="syntax/update-stmt.html">syntax/update-stmt.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_update.html">lang_update.html</a> </li>
<li><a href="syntax/upsert-clause.html">syntax/upsert-clause.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_insert.html">lang_insert.html</a> <a href="lang_upsert.html">lang_upsert.html</a> </li>
<li><a href="syntax/vacuum-stmt.html">syntax/vacuum-stmt.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_vacuum.html">lang_vacuum.html</a> </li>
<li><a href="syntax/window-defn.html">syntax/window-defn.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_aggfunc.html">lang_aggfunc.html</a> <a href="lang_altertable.html">lang_altertable.html</a> <a href="lang_attach.html">lang_attach.html</a> <a href="lang_createindex.html">lang_createindex.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_createtrigger.html">lang_createtrigger.html</a> <a href="lang_createview.html">lang_createview.html</a> <a href="lang_delete.html">lang_delete.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="lang_insert.html">lang_insert.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_select.html">lang_select.html</a> <a href="lang_update.html">lang_update.html</a> <a href="lang_upsert.html">lang_upsert.html</a> <a href="lang_with.html">lang_with.html</a> <a href="partialindex.html">partialindex.html</a> <a href="windowfunctions.html">windowfunctions.html</a> </li>
<li><a href="syntax/window-function-invocation.html">syntax/window-function-invocation.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="windowfunctions.html">windowfunctions.html</a> </li>
<li><a href="syntax/with-clause.html">syntax/with-clause.html</a> &rarr; 
<a href="keyword_index.html">keyword_index.html</a> <a href="lang_with.html">lang_with.html</a> </li>
<li><a href="syntaxdiagrams.html">syntaxdiagrams.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang.html">lang.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="tclsqlite.html">tclsqlite.html</a> &rarr; 
<a href="arch.html">arch.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="docs.html">docs.html</a> <a href="features.html">features.html</a> <a href="index.html">index.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="quickstart.html">quickstart.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="tempfiles.html">tempfiles.html</a> &rarr; 
<a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="rescode.html">rescode.html</a> <a href="shortnames.html">shortnames.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="testing.html">testing.html</a> &rarr; 
<a href="about.html">about.html</a> <a href="appfileformat.html">appfileformat.html</a> <a href="assert.html">assert.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="faq.html">faq.html</a> <a href="features.html">features.html</a> <a href="hirely.html">hirely.html</a> <a href="howtocorrupt.html">howtocorrupt.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lemon.html">lemon.html</a> <a href="limits.html">limits.html</a> <a href="lts.html">lts.html</a> <a href="malloc.html">malloc.html</a> <a href="qmplan.html">qmplan.html</a> <a href="sitemap.html">sitemap.html</a> <a href="support.html">support.html</a> <a href="tclsqlite.html">tclsqlite.html</a> <a href="th3.html">th3.html</a> </li>
<li><a href="th3.html">th3.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="malloc.html">malloc.html</a> <a href="qmplan.html">qmplan.html</a> <a href="sitemap.html">sitemap.html</a> <a href="support.html">support.html</a> <a href="testing.html">testing.html</a> </li>
<li><a href="threadsafe.html">threadsafe.html</a> &rarr; 
<a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> <a href="c3ref/db_mutex.html">c3ref/db_mutex.html</a> <a href="c3ref/errcode.html">c3ref/errcode.html</a> <a href="c3ref/open.html">c3ref/open.html</a> <a href="c3ref/threadsafe.html">c3ref/threadsafe.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cintro.html">cintro.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="faq.html">faq.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="transactional.html">transactional.html</a> &rarr; 
<a href="about.html">about.html</a> <a href="doclist.html">doclist.html</a> <a href="fasterthanfs.html">fasterthanfs.html</a> <a href="features.html">features.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> <a href="useovernet.html">useovernet.html</a> </li>
<li><a href="uintcseq.html">uintcseq.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="undoredo.html">undoredo.html</a> &rarr; 
<a href="aff_short.html">aff_short.html</a> <a href="affcase1.html">affcase1.html</a> <a href="appfileformat.html">appfileformat.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="unionvtab.html">unionvtab.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> <a href="swarmvtab.html">swarmvtab.html</a> <a href="vtablist.html">vtablist.html</a> </li>
<li><a href="unlock_notify.html">unlock_notify.html</a> &rarr; 
<a href="c3ref/unlock_notify.html">c3ref/unlock_notify.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="uri.html">uri.html</a> &rarr; 
<a href="c3ref/open.html">c3ref/open.html</a> <a href="c3ref/uri_boolean.html">c3ref/uri_boolean.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="inmemorydb.html">inmemorydb.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_attach.html">lang_attach.html</a> <a href="lang_vacuum.html">lang_vacuum.html</a> <a href="psow.html">psow.html</a> <a href="sharedcache.html">sharedcache.html</a> <a href="shortnames.html">shortnames.html</a> <a href="sitemap.html">sitemap.html</a> <a href="tclsqlite.html">tclsqlite.html</a> <a href="vfs.html">vfs.html</a> <a href="wal.html">wal.html</a> <a href="walformat.html">walformat.html</a> </li>
<li><a href="useovernet.html">useovernet.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="vdbe.html">vdbe.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="pragma.html">pragma.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="version3.html">version3.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="versionnumbers.html">versionnumbers.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="qmplan.html">qmplan.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="vfs.html">vfs.html</a> &rarr; 
<a href="arch.html">arch.html</a> <a href="atomiccommit.html">atomiccommit.html</a> <a href="c3ref/c_fcntl_begin_atomic_write.html">c3ref/c_fcntl_begin_atomic_write.html</a> <a href="c3ref/create_filename.html">c3ref/create_filename.html</a> <a href="c3ref/database_file_object.html">c3ref/database_file_object.html</a> <a href="c3ref/db_filename.html">c3ref/db_filename.html</a> <a href="c3ref/filename.html">c3ref/filename.html</a> <a href="c3ref/filename_database.html">c3ref/filename_database.html</a> <a href="c3ref/free.html">c3ref/free.html</a> <a href="c3ref/open.html">c3ref/open.html</a> <a href="c3ref/uri_boolean.html">c3ref/uri_boolean.html</a> <a href="c3ref/vfs.html">c3ref/vfs.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="cintro.html">cintro.html</a> <a href="cksumvfs.html">cksumvfs.html</a> <a href="cli.html">cli.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="fileformat2.html">fileformat2.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="loadext.html">loadext.html</a> <a href="pragma.html">pragma.html</a> <a href="psow.html">psow.html</a> <a href="rescode.html">rescode.html</a> <a href="selfcontained.html">selfcontained.html</a> <a href="sitemap.html">sitemap.html</a> <a href="tclsqlite.html">tclsqlite.html</a> <a href="tempfiles.html">tempfiles.html</a> <a href="testing.html">testing.html</a> <a href="uri.html">uri.html</a> <a href="vtablist.html">vtablist.html</a> <a href="wal.html">wal.html</a> <a href="walformat.html">walformat.html</a> </li>
<li><a href="vtab.html">vtab.html</a> &rarr; 
<a href="appfunc.html">appfunc.html</a> <a href="bytecodevtab.html">bytecodevtab.html</a> <a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> <a href="c3ref/c_fail.html">c3ref/c_fail.html</a> <a href="c3ref/c_index_constraint_eq.html">c3ref/c_index_constraint_eq.html</a> <a href="c3ref/c_vtab_constraint_support.html">c3ref/c_vtab_constraint_support.html</a> <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> <a href="c3ref/create_module.html">c3ref/create_module.html</a> <a href="c3ref/declare_vtab.html">c3ref/declare_vtab.html</a> <a href="c3ref/index_info.html">c3ref/index_info.html</a> <a href="c3ref/last_insert_rowid.html">c3ref/last_insert_rowid.html</a> <a href="c3ref/module.html">c3ref/module.html</a> <a href="c3ref/overload_function.html">c3ref/overload_function.html</a> <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> <a href="c3ref/stmt_readonly.html">c3ref/stmt_readonly.html</a> <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> <a href="c3ref/vtab.html">c3ref/vtab.html</a> <a href="c3ref/vtab_collation.html">c3ref/vtab_collation.html</a> <a href="c3ref/vtab_config.html">c3ref/vtab_config.html</a> <a href="c3ref/vtab_cursor.html">c3ref/vtab_cursor.html</a> <a href="c3ref/vtab_distinct.html">c3ref/vtab_distinct.html</a> <a href="c3ref/vtab_in.html">c3ref/vtab_in.html</a> <a href="c3ref/vtab_in_first.html">c3ref/vtab_in_first.html</a> <a href="c3ref/vtab_nochange.html">c3ref/vtab_nochange.html</a> <a href="c3ref/vtab_on_conflict.html">c3ref/vtab_on_conflict.html</a> <a href="c3ref/vtab_rhs_value.html">c3ref/vtab_rhs_value.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="carray.html">carray.html</a> <a href="cintro.html">cintro.html</a> <a href="cli.html">cli.html</a> <a href="compile.html">compile.html</a> <a href="completion.html">completion.html</a> <a href="cves.html">cves.html</a> <a href="dbpage.html">dbpage.html</a> <a href="dbstat.html">dbstat.html</a> <a href="doclist.html">doclist.html</a> <a href="docs.html">docs.html</a> <a href="fileformat2.html">fileformat2.html</a> <a href="fts3.html">fts3.html</a> <a href="fts5.html">fts5.html</a> <a href="fullsql.html">fullsql.html</a> <a href="json1.html">json1.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_createvtab.html">lang_createvtab.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_select.html">lang_select.html</a> <a href="lang_upsert.html">lang_upsert.html</a> <a href="loadext.html">loadext.html</a> <a href="memstat.html">memstat.html</a> <a href="pragma.html">pragma.html</a> <a href="rescode.html">rescode.html</a> <a href="rowidtable.html">rowidtable.html</a> <a href="rtree.html">rtree.html</a> <a href="schematab.html">schematab.html</a> <a href="security.html">security.html</a> <a href="series.html">series.html</a> <a href="sessionintro.html">sessionintro.html</a> <a href="sitemap.html">sitemap.html</a> <a href="spellfix1.html">spellfix1.html</a> <a href="sqldiff.html">sqldiff.html</a> <a href="stmt.html">stmt.html</a> <a href="unionvtab.html">unionvtab.html</a> <a href="vtablist.html">vtablist.html</a> <a href="zipfile.html">zipfile.html</a> </li>
<li><a href="vtablist.html">vtablist.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="wal.html">wal.html</a> &rarr; 
<a href="arch.html">arch.html</a> <a href="asyncvfs.html">asyncvfs.html</a> <a href="atomiccommit.html">atomiccommit.html</a> <a href="c3ref/c_fcntl_begin_atomic_write.html">c3ref/c_fcntl_begin_atomic_write.html</a> <a href="c3ref/deserialize.html">c3ref/deserialize.html</a> <a href="c3ref/snapshot.html">c3ref/snapshot.html</a> <a href="c3ref/snapshot_get.html">c3ref/snapshot_get.html</a> <a href="c3ref/snapshot_open.html">c3ref/snapshot_open.html</a> <a href="c3ref/snapshot_recover.html">c3ref/snapshot_recover.html</a> <a href="c3ref/wal_autocheckpoint.html">c3ref/wal_autocheckpoint.html</a> <a href="c3ref/wal_checkpoint.html">c3ref/wal_checkpoint.html</a> <a href="c3ref/wal_checkpoint_v2.html">c3ref/wal_checkpoint_v2.html</a> <a href="c3ref/wal_hook.html">c3ref/wal_hook.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="docs.html">docs.html</a> <a href="errlog.html">errlog.html</a> <a href="fasterthanfs.html">fasterthanfs.html</a> <a href="fileformat2.html">fileformat2.html</a> <a href="formatchng.html">formatchng.html</a> <a href="howtocorrupt.html">howtocorrupt.html</a> <a href="isolation.html">isolation.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_attach.html">lang_attach.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_transaction.html">lang_transaction.html</a> <a href="lang_vacuum.html">lang_vacuum.html</a> <a href="lockingv3.html">lockingv3.html</a> <a href="pragma.html">pragma.html</a> <a href="psow.html">psow.html</a> <a href="rbu.html">rbu.html</a> <a href="rescode.html">rescode.html</a> <a href="sharedcache.html">sharedcache.html</a> <a href="shortnames.html">shortnames.html</a> <a href="sitemap.html">sitemap.html</a> <a href="tclsqlite.html">tclsqlite.html</a> <a href="tempfiles.html">tempfiles.html</a> <a href="useovernet.html">useovernet.html</a> <a href="versionnumbers.html">versionnumbers.html</a> <a href="walformat.html">walformat.html</a> </li>
<li><a href="walformat.html">walformat.html</a> &rarr; 
<a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="fileformat2.html">fileformat2.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="rescode.html">rescode.html</a> <a href="sitemap.html">sitemap.html</a> <a href="vfs.html">vfs.html</a> <a href="wal.html">wal.html</a> </li>
<li><a href="whentouse.html">whentouse.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="docs.html">docs.html</a> <a href="famous.html">famous.html</a> <a href="features.html">features.html</a> <a href="index.html">index.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="np1queryprob.html">np1queryprob.html</a> <a href="quirks.html">quirks.html</a> <a href="sitemap.html">sitemap.html</a> <a href="tempfiles.html">tempfiles.html</a> </li>
<li><a href="whyc.html">whyc.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="whynotgit.html">whynotgit.html</a> &rarr; 
<a href="doclist.html">doclist.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="windowfunctions.html">windowfunctions.html</a> &rarr; 
<a href="appfunc.html">appfunc.html</a> <a href="c3ref/create_function.html">c3ref/create_function.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="compile.html">compile.html</a> <a href="doclist.html">doclist.html</a> <a href="docs.html">docs.html</a> <a href="features.html">features.html</a> <a href="fullsql.html">fullsql.html</a> <a href="index.html">index.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_aggfunc.html">lang_aggfunc.html</a> <a href="lang_corefunc.html">lang_corefunc.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="lang_returning.html">lang_returning.html</a> <a href="lang_with.html">lang_with.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="withoutrowid.html">withoutrowid.html</a> &rarr; 
<a href="autoinc.html">autoinc.html</a> <a href="c3ref/last_insert_rowid.html">c3ref/last_insert_rowid.html</a> <a href="c3ref/table_column_metadata.html">c3ref/table_column_metadata.html</a> <a href="c3ref/update_hook.html">c3ref/update_hook.html</a> <a href="capi3ref.html">capi3ref.html</a> <a href="doclist.html">doclist.html</a> <a href="fileformat2.html">fileformat2.html</a> <a href="fullsql.html">fullsql.html</a> <a href="imposter.html">imposter.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="lang_createtable.html">lang_createtable.html</a> <a href="lang_expr.html">lang_expr.html</a> <a href="optoverview.html">optoverview.html</a> <a href="pragma.html">pragma.html</a> <a href="queryplanner.html">queryplanner.html</a> <a href="quirks.html">quirks.html</a> <a href="rowidtable.html">rowidtable.html</a> <a href="schematab.html">schematab.html</a> <a href="sessionintro.html">sessionintro.html</a> <a href="sitemap.html">sitemap.html</a> <a href="sqldiff.html">sqldiff.html</a> <a href="stricttables.html">stricttables.html</a> <a href="vtab.html">vtab.html</a> </li>
<li><a href="zeroconf.html">zeroconf.html</a> &rarr; 
<a href="about.html">about.html</a> <a href="doclist.html">doclist.html</a> <a href="features.html">features.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="serverless.html">serverless.html</a> <a href="sitemap.html">sitemap.html</a> </li>
<li><a href="zipfile.html">zipfile.html</a> &rarr; 
<a href="cli.html">cli.html</a> <a href="cves.html">cves.html</a> <a href="doclist.html">doclist.html</a> <a href="keyword_index.html">keyword_index.html</a> <a href="sitemap.html">sitemap.html</a> <a href="sqlar.html">sqlar.html</a> <a href="vtablist.html">vtablist.html</a> </li>
</ul><p align="center"><small><i>This page last modified on  <a href="https://sqlite.org/docsrc/honeypot" id="mtimelink"  data-href="https://sqlite.org/docsrc/finfo/wrap.tcl?m=08af34fe24">2023-03-31 19:57:15</a> UTC </small></i></p>