File: sqlite.html

package info (click to toggle)
nodejs 22.14.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 246,928 kB
  • sloc: cpp: 1,582,349; javascript: 582,017; ansic: 82,400; python: 60,561; sh: 4,009; makefile: 2,263; asm: 1,732; pascal: 1,565; perl: 248; lisp: 222; xml: 42
file content (911 lines) | stat: -rw-r--r-- 67,781 bytes parent folder | download
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
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <meta name="nodejs.org:node-version" content="v22.14.0">
  <title>SQLite | Node.js v22.14.0 Documentation</title>
  <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic&display=fallback">
  <link rel="stylesheet" href="assets/style.css">
  <link rel="stylesheet" href="assets/hljs.css">
  <link rel="canonical" href="https://nodejs.org/api/sqlite.html">
  <script async defer src="assets/api.js" type="text/javascript"></script>
  <script>
      const storedTheme = localStorage.getItem('theme');

      // Follow operating system theme preference
      if (storedTheme === null && window.matchMedia) {
        const mq = window.matchMedia('(prefers-color-scheme: dark)');
        if (mq.matches) {
          document.documentElement.classList.add('dark-mode');
        }
      } else if (storedTheme === 'dark') {
        document.documentElement.classList.add('dark-mode');
      }
  </script>
  <style>@media(max-width:526px){.with-38-chars>.js-flavor-toggle{float:none;margin:0 0 1em auto;}}@media(max-width:606px){.with-48-chars>.js-flavor-toggle{float:none;margin:0 0 1em auto;}}</style>
</head>
<body class="alt apidoc" id="api-section-sqlite">
  <a href="#apicontent" class="skip-to-content">Skip to content</a>
  <div id="content" class="clearfix">
    <div role="navigation" id="column2" class="interior">
      <div id="intro" class="interior">
        <a href="/" title="Go back to the home page">
          Node.js
        </a>
      </div>
      <ul>
<li><a href="documentation.html" class="nav-documentation">About this documentation</a></li>
<li><a href="synopsis.html" class="nav-synopsis">Usage and example</a></li>
</ul>
<hr class="line">
<ul>
<li><a href="assert.html" class="nav-assert">Assertion testing</a></li>
<li><a href="async_context.html" class="nav-async_context">Asynchronous context tracking</a></li>
<li><a href="async_hooks.html" class="nav-async_hooks">Async hooks</a></li>
<li><a href="buffer.html" class="nav-buffer">Buffer</a></li>
<li><a href="addons.html" class="nav-addons">C++ addons</a></li>
<li><a href="n-api.html" class="nav-n-api">C/C++ addons with Node-API</a></li>
<li><a href="embedding.html" class="nav-embedding">C++ embedder API</a></li>
<li><a href="child_process.html" class="nav-child_process">Child processes</a></li>
<li><a href="cluster.html" class="nav-cluster">Cluster</a></li>
<li><a href="cli.html" class="nav-cli">Command-line options</a></li>
<li><a href="console.html" class="nav-console">Console</a></li>
<li><a href="corepack.html" class="nav-corepack">Corepack</a></li>
<li><a href="crypto.html" class="nav-crypto">Crypto</a></li>
<li><a href="debugger.html" class="nav-debugger">Debugger</a></li>
<li><a href="deprecations.html" class="nav-deprecations">Deprecated APIs</a></li>
<li><a href="diagnostics_channel.html" class="nav-diagnostics_channel">Diagnostics Channel</a></li>
<li><a href="dns.html" class="nav-dns">DNS</a></li>
<li><a href="domain.html" class="nav-domain">Domain</a></li>
<li><a href="errors.html" class="nav-errors">Errors</a></li>
<li><a href="events.html" class="nav-events">Events</a></li>
<li><a href="fs.html" class="nav-fs">File system</a></li>
<li><a href="globals.html" class="nav-globals">Globals</a></li>
<li><a href="http.html" class="nav-http">HTTP</a></li>
<li><a href="http2.html" class="nav-http2">HTTP/2</a></li>
<li><a href="https.html" class="nav-https">HTTPS</a></li>
<li><a href="inspector.html" class="nav-inspector">Inspector</a></li>
<li><a href="intl.html" class="nav-intl">Internationalization</a></li>
<li><a href="modules.html" class="nav-modules">Modules: CommonJS modules</a></li>
<li><a href="esm.html" class="nav-esm">Modules: ECMAScript modules</a></li>
<li><a href="module.html" class="nav-module">Modules: <code>node:module</code> API</a></li>
<li><a href="packages.html" class="nav-packages">Modules: Packages</a></li>
<li><a href="typescript.html" class="nav-typescript">Modules: TypeScript</a></li>
<li><a href="net.html" class="nav-net">Net</a></li>
<li><a href="os.html" class="nav-os">OS</a></li>
<li><a href="path.html" class="nav-path">Path</a></li>
<li><a href="perf_hooks.html" class="nav-perf_hooks">Performance hooks</a></li>
<li><a href="permissions.html" class="nav-permissions">Permissions</a></li>
<li><a href="process.html" class="nav-process">Process</a></li>
<li><a href="punycode.html" class="nav-punycode">Punycode</a></li>
<li><a href="querystring.html" class="nav-querystring">Query strings</a></li>
<li><a href="readline.html" class="nav-readline">Readline</a></li>
<li><a href="repl.html" class="nav-repl">REPL</a></li>
<li><a href="report.html" class="nav-report">Report</a></li>
<li><a href="single-executable-applications.html" class="nav-single-executable-applications">Single executable applications</a></li>
<li><a href="sqlite.html" class="nav-sqlite active">SQLite</a></li>
<li><a href="stream.html" class="nav-stream">Stream</a></li>
<li><a href="string_decoder.html" class="nav-string_decoder">String decoder</a></li>
<li><a href="test.html" class="nav-test">Test runner</a></li>
<li><a href="timers.html" class="nav-timers">Timers</a></li>
<li><a href="tls.html" class="nav-tls">TLS/SSL</a></li>
<li><a href="tracing.html" class="nav-tracing">Trace events</a></li>
<li><a href="tty.html" class="nav-tty">TTY</a></li>
<li><a href="dgram.html" class="nav-dgram">UDP/datagram</a></li>
<li><a href="url.html" class="nav-url">URL</a></li>
<li><a href="util.html" class="nav-util">Utilities</a></li>
<li><a href="v8.html" class="nav-v8">V8</a></li>
<li><a href="vm.html" class="nav-vm">VM</a></li>
<li><a href="wasi.html" class="nav-wasi">WASI</a></li>
<li><a href="webcrypto.html" class="nav-webcrypto">Web Crypto API</a></li>
<li><a href="webstreams.html" class="nav-webstreams">Web Streams API</a></li>
<li><a href="worker_threads.html" class="nav-worker_threads">Worker threads</a></li>
<li><a href="zlib.html" class="nav-zlib">Zlib</a></li>
</ul>
<hr class="line">
<ul>
<li><a href="https://github.com/nodejs/node" class="nav-https-github-com-nodejs-node">Code repository and issue tracker</a></li>
</ul>
    </div>

    <div id="column1" data-id="sqlite" class="interior">
      <header class="header">
        <div class="header-container">
          <h1>Node.js v22.14.0 documentation</h1>
          <button class="theme-toggle-btn" id="theme-toggle-btn" title="Toggle dark mode/light mode" aria-label="Toggle dark mode/light mode" hidden>
            <svg xmlns="http://www.w3.org/2000/svg" class="icon dark-icon" height="24" width="24">
              <path fill="none" d="M0 0h24v24H0z" />
              <path d="M11.1 12.08c-2.33-4.51-.5-8.48.53-10.07C6.27 2.2 1.98 6.59 1.98 12c0 .14.02.28.02.42.62-.27 1.29-.42 2-.42 1.66 0 3.18.83 4.1 2.15A4.01 4.01 0 0111 18c0 1.52-.87 2.83-2.12 3.51.98.32 2.03.5 3.11.5 3.5 0 6.58-1.8 8.37-4.52-2.36.23-6.98-.97-9.26-5.41z"/>
              <path d="M7 16h-.18C6.4 14.84 5.3 14 4 14c-1.66 0-3 1.34-3 3s1.34 3 3 3h3c1.1 0 2-.9 2-2s-.9-2-2-2z"/>
            </svg>
            <svg xmlns="http://www.w3.org/2000/svg" class="icon light-icon" height="24" width="24">
              <path d="M0 0h24v24H0z" fill="none" />
              <path d="M6.76 4.84l-1.8-1.79-1.41 1.41 1.79 1.79 1.42-1.41zM4 10.5H1v2h3v-2zm9-9.95h-2V3.5h2V.55zm7.45 3.91l-1.41-1.41-1.79 1.79 1.41 1.41 1.79-1.79zm-3.21 13.7l1.79 1.8 1.41-1.41-1.8-1.79-1.4 1.4zM20 10.5v2h3v-2h-3zm-8-5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm-1 16.95h2V19.5h-2v2.95zm-7.45-3.91l1.41 1.41 1.79-1.8-1.41-1.41-1.79 1.8z"/>
            </svg>
          </button>
        </div>
        <div id="gtoc">
          <ul>
            <li class="pinned-header">Node.js v22.14.0</li>
            
    <li class="picker-header">
      <a href="#toc-picker" aria-controls="toc-picker">
        <span class="picker-arrow"></span>
        Table of contents
      </a>

      <div class="picker" tabindex="-1"><div class="toc"><ul id="toc-picker">
<li><span class="stability_1"><a href="#sqlite">SQLite</a></span>
<ul>
<li><a href="#class-databasesync">Class: <code>DatabaseSync</code></a>
<ul>
<li><a href="#new-databasesynclocation-options"><code>new DatabaseSync(location[, options])</code></a></li>
<li><a href="#databaseclose"><code>database.close()</code></a></li>
<li><a href="#databaseloadextensionpath"><code>database.loadExtension(path)</code></a></li>
<li><a href="#databaseenableloadextensionallow"><code>database.enableLoadExtension(allow)</code></a></li>
<li><a href="#databaseexecsql"><code>database.exec(sql)</code></a></li>
<li><a href="#databasefunctionname-options-function"><code>database.function(name[, options], function)</code></a></li>
<li><a href="#databaseopen"><code>database.open()</code></a></li>
<li><a href="#databasepreparesql"><code>database.prepare(sql)</code></a></li>
<li><a href="#databasecreatesessionoptions"><code>database.createSession([options])</code></a></li>
<li><a href="#databaseapplychangesetchangeset-options"><code>database.applyChangeset(changeset[, options])</code></a></li>
</ul>
</li>
<li><a href="#class-session">Class: <code>Session</code></a>
<ul>
<li><a href="#sessionchangeset"><code>session.changeset()</code></a></li>
<li><a href="#sessionpatchset"><code>session.patchset()</code></a></li>
<li><a href="#sessionclose"><code>session.close()</code>.</a></li>
</ul>
</li>
<li><a href="#class-statementsync">Class: <code>StatementSync</code></a>
<ul>
<li><a href="#statementallnamedparameters-anonymousparameters"><code>statement.all([namedParameters][, ...anonymousParameters])</code></a></li>
<li><a href="#statementexpandedsql"><code>statement.expandedSQL</code></a></li>
<li><a href="#statementgetnamedparameters-anonymousparameters"><code>statement.get([namedParameters][, ...anonymousParameters])</code></a></li>
<li><a href="#statementiteratenamedparameters-anonymousparameters"><code>statement.iterate([namedParameters][, ...anonymousParameters])</code></a></li>
<li><a href="#statementrunnamedparameters-anonymousparameters"><code>statement.run([namedParameters][, ...anonymousParameters])</code></a></li>
<li><a href="#statementsetallowbarenamedparametersenabled"><code>statement.setAllowBareNamedParameters(enabled)</code></a></li>
<li><a href="#statementsetreadbigintsenabled"><code>statement.setReadBigInts(enabled)</code></a></li>
<li><a href="#statementsourcesql"><code>statement.sourceSQL</code></a></li>
<li><a href="#type-conversion-between-javascript-and-sqlite">Type conversion between JavaScript and SQLite</a></li>
</ul>
</li>
<li><a href="#sqliteconstants"><code>sqlite.constants</code></a>
<ul>
<li><a href="#sqlite-constants">SQLite constants</a>
<ul>
<li><a href="#conflict-resolution-constants">Conflict resolution constants</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul></div></div>
    </li>
  
            
    <li class="picker-header">
      <a href="#gtoc-picker" aria-controls="gtoc-picker">
        <span class="picker-arrow"></span>
        Index
      </a>

      <div class="picker" tabindex="-1" id="gtoc-picker"><ul>
<li><a href="documentation.html" class="nav-documentation">About this documentation</a></li>
<li><a href="synopsis.html" class="nav-synopsis">Usage and example</a></li>

      <li>
        <a href="index.html">Index</a>
      </li>
    </ul>
  
<hr class="line">
<ul>
<li><a href="assert.html" class="nav-assert">Assertion testing</a></li>
<li><a href="async_context.html" class="nav-async_context">Asynchronous context tracking</a></li>
<li><a href="async_hooks.html" class="nav-async_hooks">Async hooks</a></li>
<li><a href="buffer.html" class="nav-buffer">Buffer</a></li>
<li><a href="addons.html" class="nav-addons">C++ addons</a></li>
<li><a href="n-api.html" class="nav-n-api">C/C++ addons with Node-API</a></li>
<li><a href="embedding.html" class="nav-embedding">C++ embedder API</a></li>
<li><a href="child_process.html" class="nav-child_process">Child processes</a></li>
<li><a href="cluster.html" class="nav-cluster">Cluster</a></li>
<li><a href="cli.html" class="nav-cli">Command-line options</a></li>
<li><a href="console.html" class="nav-console">Console</a></li>
<li><a href="corepack.html" class="nav-corepack">Corepack</a></li>
<li><a href="crypto.html" class="nav-crypto">Crypto</a></li>
<li><a href="debugger.html" class="nav-debugger">Debugger</a></li>
<li><a href="deprecations.html" class="nav-deprecations">Deprecated APIs</a></li>
<li><a href="diagnostics_channel.html" class="nav-diagnostics_channel">Diagnostics Channel</a></li>
<li><a href="dns.html" class="nav-dns">DNS</a></li>
<li><a href="domain.html" class="nav-domain">Domain</a></li>
<li><a href="errors.html" class="nav-errors">Errors</a></li>
<li><a href="events.html" class="nav-events">Events</a></li>
<li><a href="fs.html" class="nav-fs">File system</a></li>
<li><a href="globals.html" class="nav-globals">Globals</a></li>
<li><a href="http.html" class="nav-http">HTTP</a></li>
<li><a href="http2.html" class="nav-http2">HTTP/2</a></li>
<li><a href="https.html" class="nav-https">HTTPS</a></li>
<li><a href="inspector.html" class="nav-inspector">Inspector</a></li>
<li><a href="intl.html" class="nav-intl">Internationalization</a></li>
<li><a href="modules.html" class="nav-modules">Modules: CommonJS modules</a></li>
<li><a href="esm.html" class="nav-esm">Modules: ECMAScript modules</a></li>
<li><a href="module.html" class="nav-module">Modules: <code>node:module</code> API</a></li>
<li><a href="packages.html" class="nav-packages">Modules: Packages</a></li>
<li><a href="typescript.html" class="nav-typescript">Modules: TypeScript</a></li>
<li><a href="net.html" class="nav-net">Net</a></li>
<li><a href="os.html" class="nav-os">OS</a></li>
<li><a href="path.html" class="nav-path">Path</a></li>
<li><a href="perf_hooks.html" class="nav-perf_hooks">Performance hooks</a></li>
<li><a href="permissions.html" class="nav-permissions">Permissions</a></li>
<li><a href="process.html" class="nav-process">Process</a></li>
<li><a href="punycode.html" class="nav-punycode">Punycode</a></li>
<li><a href="querystring.html" class="nav-querystring">Query strings</a></li>
<li><a href="readline.html" class="nav-readline">Readline</a></li>
<li><a href="repl.html" class="nav-repl">REPL</a></li>
<li><a href="report.html" class="nav-report">Report</a></li>
<li><a href="single-executable-applications.html" class="nav-single-executable-applications">Single executable applications</a></li>
<li><a href="sqlite.html" class="nav-sqlite active">SQLite</a></li>
<li><a href="stream.html" class="nav-stream">Stream</a></li>
<li><a href="string_decoder.html" class="nav-string_decoder">String decoder</a></li>
<li><a href="test.html" class="nav-test">Test runner</a></li>
<li><a href="timers.html" class="nav-timers">Timers</a></li>
<li><a href="tls.html" class="nav-tls">TLS/SSL</a></li>
<li><a href="tracing.html" class="nav-tracing">Trace events</a></li>
<li><a href="tty.html" class="nav-tty">TTY</a></li>
<li><a href="dgram.html" class="nav-dgram">UDP/datagram</a></li>
<li><a href="url.html" class="nav-url">URL</a></li>
<li><a href="util.html" class="nav-util">Utilities</a></li>
<li><a href="v8.html" class="nav-v8">V8</a></li>
<li><a href="vm.html" class="nav-vm">VM</a></li>
<li><a href="wasi.html" class="nav-wasi">WASI</a></li>
<li><a href="webcrypto.html" class="nav-webcrypto">Web Crypto API</a></li>
<li><a href="webstreams.html" class="nav-webstreams">Web Streams API</a></li>
<li><a href="worker_threads.html" class="nav-worker_threads">Worker threads</a></li>
<li><a href="zlib.html" class="nav-zlib">Zlib</a></li>
</ul>
<hr class="line">
<ul>
<li><a href="https://github.com/nodejs/node" class="nav-https-github-com-nodejs-node">Code repository and issue tracker</a></li>
</ul></div>
    </li>
  
            
    <li class="picker-header">
      <a href="#alt-docs" aria-controls="alt-docs">
        <span class="picker-arrow"></span>
        Other versions
      </a>
      <div class="picker" tabindex="-1"><ol id="alt-docs"><li><a href="https://nodejs.org/docs/latest-v23.x/api/sqlite.html">23.x</a></li>
<li><a href="https://nodejs.org/docs/latest-v22.x/api/sqlite.html">22.x <b>LTS</b></a></li></ol></div>
    </li>
  
            <li class="picker-header">
              <a href="#options-picker" aria-controls="options-picker">
                <span class="picker-arrow"></span>
                Options
              </a>
        
              <div class="picker" tabindex="-1">
                <ul id="options-picker">
                  <li>
                    <a href="all.html">View on single page</a>
                  </li>
                  <li>
                    <a href="sqlite.json">View as JSON</a>
                  </li>
                  <li class="edit_on_github"><a href="https://github.com/nodejs/node/edit/main/doc/api/sqlite.md">Edit on GitHub</a></li>    
                </ul>
              </div>
            </li>
          </ul>
        </div>
        <hr>
      </header>

      <details role="navigation" id="toc" open><summary>Table of contents</summary><ul>
<li><span class="stability_1"><a href="#sqlite">SQLite</a></span>
<ul>
<li><a href="#class-databasesync">Class: <code>DatabaseSync</code></a>
<ul>
<li><a href="#new-databasesynclocation-options"><code>new DatabaseSync(location[, options])</code></a></li>
<li><a href="#databaseclose"><code>database.close()</code></a></li>
<li><a href="#databaseloadextensionpath"><code>database.loadExtension(path)</code></a></li>
<li><a href="#databaseenableloadextensionallow"><code>database.enableLoadExtension(allow)</code></a></li>
<li><a href="#databaseexecsql"><code>database.exec(sql)</code></a></li>
<li><a href="#databasefunctionname-options-function"><code>database.function(name[, options], function)</code></a></li>
<li><a href="#databaseopen"><code>database.open()</code></a></li>
<li><a href="#databasepreparesql"><code>database.prepare(sql)</code></a></li>
<li><a href="#databasecreatesessionoptions"><code>database.createSession([options])</code></a></li>
<li><a href="#databaseapplychangesetchangeset-options"><code>database.applyChangeset(changeset[, options])</code></a></li>
</ul>
</li>
<li><a href="#class-session">Class: <code>Session</code></a>
<ul>
<li><a href="#sessionchangeset"><code>session.changeset()</code></a></li>
<li><a href="#sessionpatchset"><code>session.patchset()</code></a></li>
<li><a href="#sessionclose"><code>session.close()</code>.</a></li>
</ul>
</li>
<li><a href="#class-statementsync">Class: <code>StatementSync</code></a>
<ul>
<li><a href="#statementallnamedparameters-anonymousparameters"><code>statement.all([namedParameters][, ...anonymousParameters])</code></a></li>
<li><a href="#statementexpandedsql"><code>statement.expandedSQL</code></a></li>
<li><a href="#statementgetnamedparameters-anonymousparameters"><code>statement.get([namedParameters][, ...anonymousParameters])</code></a></li>
<li><a href="#statementiteratenamedparameters-anonymousparameters"><code>statement.iterate([namedParameters][, ...anonymousParameters])</code></a></li>
<li><a href="#statementrunnamedparameters-anonymousparameters"><code>statement.run([namedParameters][, ...anonymousParameters])</code></a></li>
<li><a href="#statementsetallowbarenamedparametersenabled"><code>statement.setAllowBareNamedParameters(enabled)</code></a></li>
<li><a href="#statementsetreadbigintsenabled"><code>statement.setReadBigInts(enabled)</code></a></li>
<li><a href="#statementsourcesql"><code>statement.sourceSQL</code></a></li>
<li><a href="#type-conversion-between-javascript-and-sqlite">Type conversion between JavaScript and SQLite</a></li>
</ul>
</li>
<li><a href="#sqliteconstants"><code>sqlite.constants</code></a>
<ul>
<li><a href="#sqlite-constants">SQLite constants</a>
<ul>
<li><a href="#conflict-resolution-constants">Conflict resolution constants</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul></details>

      <div role="main" id="apicontent">
        <h2>SQLite<span><a class="mark" href="#sqlite" id="sqlite">#</a></span><a aria-hidden="true" class="legacy" id="sqlite_sqlite"></a></h2>

<div class="api_metadata">
<span>Added in: v22.5.0</span>
</div>
<p></p><div class="api_stability api_stability_1"><a href="documentation.html#stability-index">Stability: 1</a>.1 - Active development.</div><p></p>
<p><strong>Source Code:</strong> <a href="https://github.com/nodejs/node/blob/v22.14.0/lib/sqlite.js">lib/sqlite.js</a></p>
<p>The <code>node:sqlite</code> module facilitates working with SQLite databases.
To access it:</p>

<pre class="with-38-chars"><input class="js-flavor-toggle" type="checkbox" checked aria-label="Show modern ES modules syntax"><code class="language-js mjs"><span class="hljs-keyword">import</span> sqlite <span class="hljs-keyword">from</span> <span class="hljs-string">'node:sqlite'</span>;</code><code class="language-js cjs"><span class="hljs-keyword">const</span> sqlite = <span class="hljs-built_in">require</span>(<span class="hljs-string">'node:sqlite'</span>);</code><button class="copy-button">copy</button></pre>
<p>This module is only available under the <code>node:</code> scheme.</p>
<p>The following example shows the basic usage of the <code>node:sqlite</code> module to open
an in-memory database, write data to the database, and then read the data back.</p>

<pre class="with-48-chars"><input class="js-flavor-toggle" type="checkbox" checked aria-label="Show modern ES modules syntax"><code class="language-js mjs"><span class="hljs-keyword">import</span> { <span class="hljs-title class_">DatabaseSync</span> } <span class="hljs-keyword">from</span> <span class="hljs-string">'node:sqlite'</span>;
<span class="hljs-keyword">const</span> database = <span class="hljs-keyword">new</span> <span class="hljs-title class_">DatabaseSync</span>(<span class="hljs-string">':memory:'</span>);

<span class="hljs-comment">// Execute SQL statements from strings.</span>
database.<span class="hljs-title function_">exec</span>(<span class="hljs-string">`
  CREATE TABLE data(
    key INTEGER PRIMARY KEY,
    value TEXT
  ) STRICT
`</span>);
<span class="hljs-comment">// Create a prepared statement to insert data into the database.</span>
<span class="hljs-keyword">const</span> insert = database.<span class="hljs-title function_">prepare</span>(<span class="hljs-string">'INSERT INTO data (key, value) VALUES (?, ?)'</span>);
<span class="hljs-comment">// Execute the prepared statement with bound values.</span>
insert.<span class="hljs-title function_">run</span>(<span class="hljs-number">1</span>, <span class="hljs-string">'hello'</span>);
insert.<span class="hljs-title function_">run</span>(<span class="hljs-number">2</span>, <span class="hljs-string">'world'</span>);
<span class="hljs-comment">// Create a prepared statement to read data from the database.</span>
<span class="hljs-keyword">const</span> query = database.<span class="hljs-title function_">prepare</span>(<span class="hljs-string">'SELECT * FROM data ORDER BY key'</span>);
<span class="hljs-comment">// Execute the prepared statement and log the result set.</span>
<span class="hljs-variable language_">console</span>.<span class="hljs-title function_">log</span>(query.<span class="hljs-title function_">all</span>());
<span class="hljs-comment">// Prints: [ { key: 1, value: 'hello' }, { key: 2, value: 'world' } ]</span></code><code class="language-js cjs"><span class="hljs-meta">'use strict'</span>;
<span class="hljs-keyword">const</span> { <span class="hljs-title class_">DatabaseSync</span> } = <span class="hljs-built_in">require</span>(<span class="hljs-string">'node:sqlite'</span>);
<span class="hljs-keyword">const</span> database = <span class="hljs-keyword">new</span> <span class="hljs-title class_">DatabaseSync</span>(<span class="hljs-string">':memory:'</span>);

<span class="hljs-comment">// Execute SQL statements from strings.</span>
database.<span class="hljs-title function_">exec</span>(<span class="hljs-string">`
  CREATE TABLE data(
    key INTEGER PRIMARY KEY,
    value TEXT
  ) STRICT
`</span>);
<span class="hljs-comment">// Create a prepared statement to insert data into the database.</span>
<span class="hljs-keyword">const</span> insert = database.<span class="hljs-title function_">prepare</span>(<span class="hljs-string">'INSERT INTO data (key, value) VALUES (?, ?)'</span>);
<span class="hljs-comment">// Execute the prepared statement with bound values.</span>
insert.<span class="hljs-title function_">run</span>(<span class="hljs-number">1</span>, <span class="hljs-string">'hello'</span>);
insert.<span class="hljs-title function_">run</span>(<span class="hljs-number">2</span>, <span class="hljs-string">'world'</span>);
<span class="hljs-comment">// Create a prepared statement to read data from the database.</span>
<span class="hljs-keyword">const</span> query = database.<span class="hljs-title function_">prepare</span>(<span class="hljs-string">'SELECT * FROM data ORDER BY key'</span>);
<span class="hljs-comment">// Execute the prepared statement and log the result set.</span>
<span class="hljs-variable language_">console</span>.<span class="hljs-title function_">log</span>(query.<span class="hljs-title function_">all</span>());
<span class="hljs-comment">// Prints: [ { key: 1, value: 'hello' }, { key: 2, value: 'world' } ]</span></code><button class="copy-button">copy</button></pre>
<section><h3>Class: <code>DatabaseSync</code><span><a class="mark" href="#class-databasesync" id="class-databasesync">#</a></span><a aria-hidden="true" class="legacy" id="sqlite_class_databasesync"></a></h3>
<div class="api_metadata">
<span>Added in: v22.5.0</span>
</div>
<p>This class represents a single <a href="https://www.sqlite.org/c3ref/sqlite3.html">connection</a> to a SQLite database. All APIs
exposed by this class execute synchronously.</p>
<h4><code>new DatabaseSync(location[, options])</code><span><a class="mark" href="#new-databasesynclocation-options" id="new-databasesynclocation-options">#</a></span><a aria-hidden="true" class="legacy" id="sqlite_new_databasesync_location_options"></a></h4>
<div class="api_metadata">
<span>Added in: v22.5.0</span>
</div>
<ul>
<li><code>location</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type" class="type">&#x3C;string></a> The location of the database. A SQLite database can be
stored in a file or completely <a href="https://www.sqlite.org/inmemorydb.html">in memory</a>. To use a file-backed database,
the location should be a file path. To use an in-memory database, the location
should be the special name <code>':memory:'</code>.</li>
<li><code>options</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object" class="type">&#x3C;Object></a> Configuration options for the database connection. The
following options are supported:
<ul>
<li><code>open</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type" class="type">&#x3C;boolean></a> If <code>true</code>, the database is opened by the constructor. When
this value is <code>false</code>, the database must be opened via the <code>open()</code> method.
<strong>Default:</strong> <code>true</code>.</li>
<li><code>readOnly</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type" class="type">&#x3C;boolean></a> If <code>true</code>, the database is opened in read-only mode.
If the database does not exist, opening it will fail. <strong>Default:</strong> <code>false</code>.</li>
<li><code>enableForeignKeyConstraints</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type" class="type">&#x3C;boolean></a> If <code>true</code>, foreign key constraints
are enabled. This is recommended but can be disabled for compatibility with
legacy database schemas. The enforcement of foreign key constraints can be
enabled and disabled after opening the database using
<a href="https://www.sqlite.org/pragma.html#pragma_foreign_keys"><code>PRAGMA foreign_keys</code></a>. <strong>Default:</strong> <code>true</code>.</li>
<li><code>enableDoubleQuotedStringLiterals</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type" class="type">&#x3C;boolean></a> If <code>true</code>, SQLite will accept
<a href="https://www.sqlite.org/quirks.html#dblquote">double-quoted string literals</a>. This is not recommended but can be
enabled for compatibility with legacy database schemas.
<strong>Default:</strong> <code>false</code>.</li>
<li><code>allowExtension</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type" class="type">&#x3C;boolean></a> If <code>true</code>, the <code>loadExtension</code> SQL function
and the <code>loadExtension()</code> method are enabled.
You can call <code>enableLoadExtension(false)</code> later to disable this feature.
<strong>Default:</strong> <code>false</code>.</li>
</ul>
</li>
</ul>
<p>Constructs a new <code>DatabaseSync</code> instance.</p>
<h4><code>database.close()</code><span><a class="mark" href="#databaseclose" id="databaseclose">#</a></span><a aria-hidden="true" class="legacy" id="sqlite_database_close"></a></h4>
<div class="api_metadata">
<span>Added in: v22.5.0</span>
</div>
<p>Closes the database connection. An exception is thrown if the database is not
open. This method is a wrapper around <a href="https://www.sqlite.org/c3ref/close.html"><code>sqlite3_close_v2()</code></a>.</p>
<h4><code>database.loadExtension(path)</code><span><a class="mark" href="#databaseloadextensionpath" id="databaseloadextensionpath">#</a></span><a aria-hidden="true" class="legacy" id="sqlite_database_loadextension_path"></a></h4>
<div class="api_metadata">
<span>Added in: v22.13.0</span>
</div>
<ul>
<li><code>path</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type" class="type">&#x3C;string></a> The path to the shared library to load.</li>
</ul>
<p>Loads a shared library into the database connection. This method is a wrapper
around <a href="https://www.sqlite.org/c3ref/load_extension.html"><code>sqlite3_load_extension()</code></a>. It is required to enable the
<code>allowExtension</code> option when constructing the <code>DatabaseSync</code> instance.</p>
<h4><code>database.enableLoadExtension(allow)</code><span><a class="mark" href="#databaseenableloadextensionallow" id="databaseenableloadextensionallow">#</a></span><a aria-hidden="true" class="legacy" id="sqlite_database_enableloadextension_allow"></a></h4>
<div class="api_metadata">
<span>Added in: v22.13.0</span>
</div>
<ul>
<li><code>allow</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type" class="type">&#x3C;boolean></a> Whether to allow loading extensions.</li>
</ul>
<p>Enables or disables the <code>loadExtension</code> SQL function, and the <code>loadExtension()</code>
method. When <code>allowExtension</code> is <code>false</code> when constructing, you cannot enable
loading extensions for security reasons.</p>
<h4><code>database.exec(sql)</code><span><a class="mark" href="#databaseexecsql" id="databaseexecsql">#</a></span><a aria-hidden="true" class="legacy" id="sqlite_database_exec_sql"></a></h4>
<div class="api_metadata">
<span>Added in: v22.5.0</span>
</div>
<ul>
<li><code>sql</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type" class="type">&#x3C;string></a> A SQL string to execute.</li>
</ul>
<p>This method allows one or more SQL statements to be executed without returning
any results. This method is useful when executing SQL statements read from a
file. This method is a wrapper around <a href="https://www.sqlite.org/c3ref/exec.html"><code>sqlite3_exec()</code></a>.</p>
<h4><code>database.function(name[, options], function)</code><span><a class="mark" href="#databasefunctionname-options-function" id="databasefunctionname-options-function">#</a></span><a aria-hidden="true" class="legacy" id="sqlite_database_function_name_options_function"></a></h4>
<div class="api_metadata">
<span>Added in: v22.13.0</span>
</div>
<ul>
<li><code>name</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type" class="type">&#x3C;string></a> The name of the SQLite function to create.</li>
<li><code>options</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object" class="type">&#x3C;Object></a> Optional configuration settings for the function. The
following properties are supported:
<ul>
<li><code>deterministic</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type" class="type">&#x3C;boolean></a> If <code>true</code>, the <a href="https://www.sqlite.org/c3ref/c_deterministic.html"><code>SQLITE_DETERMINISTIC</code></a> flag is
set on the created function. <strong>Default:</strong> <code>false</code>.</li>
<li><code>directOnly</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type" class="type">&#x3C;boolean></a> If <code>true</code>, the <a href="https://www.sqlite.org/c3ref/c_deterministic.html"><code>SQLITE_DIRECTONLY</code></a> flag is set on
the created function. <strong>Default:</strong> <code>false</code>.</li>
<li><code>useBigIntArguments</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type" class="type">&#x3C;boolean></a> If <code>true</code>, integer arguments to <code>function</code>
are converted to <code>BigInt</code>s. If <code>false</code>, integer arguments are passed as
JavaScript numbers. <strong>Default:</strong> <code>false</code>.</li>
<li><code>varargs</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type" class="type">&#x3C;boolean></a> If <code>true</code>, <code>function</code> can accept a variable number of
arguments. If <code>false</code>, <code>function</code> must be invoked with exactly
<code>function.length</code> arguments. <strong>Default:</strong> <code>false</code>.</li>
</ul>
</li>
<li><code>function</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function" class="type">&#x3C;Function></a> The JavaScript function to call when the SQLite
function is invoked.</li>
</ul>
<p>This method is used to create SQLite user-defined functions. This method is a
wrapper around <a href="https://www.sqlite.org/c3ref/create_function.html"><code>sqlite3_create_function_v2()</code></a>.</p>
<h4><code>database.open()</code><span><a class="mark" href="#databaseopen" id="databaseopen">#</a></span><a aria-hidden="true" class="legacy" id="sqlite_database_open"></a></h4>
<div class="api_metadata">
<span>Added in: v22.5.0</span>
</div>
<p>Opens the database specified in the <code>location</code> argument of the <code>DatabaseSync</code>
constructor. This method should only be used when the database is not opened via
the constructor. An exception is thrown if the database is already open.</p>
<h4><code>database.prepare(sql)</code><span><a class="mark" href="#databasepreparesql" id="databasepreparesql">#</a></span><a aria-hidden="true" class="legacy" id="sqlite_database_prepare_sql"></a></h4>
<div class="api_metadata">
<span>Added in: v22.5.0</span>
</div>
<ul>
<li><code>sql</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type" class="type">&#x3C;string></a> A SQL string to compile to a prepared statement.</li>
<li>Returns: <a href="sqlite.html#class-statementsync" class="type">&#x3C;StatementSync></a> The prepared statement.</li>
</ul>
<p>Compiles a SQL statement into a <a href="https://www.sqlite.org/c3ref/stmt.html">prepared statement</a>. This method is a wrapper
around <a href="https://www.sqlite.org/c3ref/prepare.html"><code>sqlite3_prepare_v2()</code></a>.</p>
<h4><code>database.createSession([options])</code><span><a class="mark" href="#databasecreatesessionoptions" id="databasecreatesessionoptions">#</a></span><a aria-hidden="true" class="legacy" id="sqlite_database_createsession_options"></a></h4>
<div class="api_metadata">
<span>Added in: v22.12.0</span>
</div>
<ul>
<li><code>options</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object" class="type">&#x3C;Object></a> The configuration options for the session.
<ul>
<li><code>table</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type" class="type">&#x3C;string></a> A specific table to track changes for. By default, changes to all tables are tracked.</li>
<li><code>db</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type" class="type">&#x3C;string></a> Name of the database to track. This is useful when multiple databases have been added using <a href="https://www.sqlite.org/lang_attach.html"><code>ATTACH DATABASE</code></a>. <strong>Default</strong>: <code>'main'</code>.</li>
</ul>
</li>
<li>Returns: <a href="sqlite.html#class-session" class="type">&#x3C;Session></a> A session handle.</li>
</ul>
<p>Creates and attaches a session to the database. This method is a wrapper around <a href="https://www.sqlite.org/session/sqlite3session_create.html"><code>sqlite3session_create()</code></a> and <a href="https://www.sqlite.org/session/sqlite3session_attach.html"><code>sqlite3session_attach()</code></a>.</p>
<h4><code>database.applyChangeset(changeset[, options])</code><span><a class="mark" href="#databaseapplychangesetchangeset-options" id="databaseapplychangesetchangeset-options">#</a></span><a aria-hidden="true" class="legacy" id="sqlite_database_applychangeset_changeset_options"></a></h4>
<div class="api_metadata">
<span>Added in: v22.12.0</span>
</div>
<ul>
<li><code>changeset</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array" class="type">&#x3C;Uint8Array></a> A binary changeset or patchset.</li>
<li><code>options</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object" class="type">&#x3C;Object></a> The configuration options for how the changes will be applied.
<ul>
<li>
<p><code>filter</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function" class="type">&#x3C;Function></a> Skip changes that, when targeted table name is supplied to this function, return a truthy value.
By default, all changes are attempted.</p>
</li>
<li>
<p><code>onConflict</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function" class="type">&#x3C;Function></a> A function that determines how to handle conflicts. The function receives one argument,
which can be one of the following values:</p>
<ul>
<li><code>SQLITE_CHANGESET_DATA</code>: A <code>DELETE</code> or <code>UPDATE</code> change does not contain the expected "before" values.</li>
<li><code>SQLITE_CHANGESET_NOTFOUND</code>: A row matching the primary key of the <code>DELETE</code> or <code>UPDATE</code> change does not exist.</li>
<li><code>SQLITE_CHANGESET_CONFLICT</code>: An <code>INSERT</code> change results in a duplicate primary key.</li>
<li><code>SQLITE_CHANGESET_FOREIGN_KEY</code>: Applying a change would result in a foreign key violation.</li>
<li><code>SQLITE_CHANGESET_CONSTRAINT</code>: Applying a change results in a <code>UNIQUE</code>, <code>CHECK</code>, or <code>NOT NULL</code> constraint
violation.</li>
</ul>
<p>The function should return one of the following values:</p>
<ul>
<li><code>SQLITE_CHANGESET_OMIT</code>: Omit conflicting changes.</li>
<li><code>SQLITE_CHANGESET_REPLACE</code>: Replace existing values with conflicting changes (only valid with
<code>SQLITE_CHANGESET_DATA</code> or <code>SQLITE_CHANGESET_CONFLICT</code> conflicts).</li>
<li><code>SQLITE_CHANGESET_ABORT</code>: Abort on conflict and roll back the database.</li>
</ul>
<p>When an error is thrown in the conflict handler or when any other value is returned from the handler,
applying the changeset is aborted and the database is rolled back.</p>
<p><strong>Default</strong>: A function that returns <code>SQLITE_CHANGESET_ABORT</code>.</p>
</li>
</ul>
</li>
<li>Returns: <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type" class="type">&#x3C;boolean></a> Whether the changeset was applied succesfully without being aborted.</li>
</ul>
<p>An exception is thrown if the database is not
open. This method is a wrapper around <a href="https://www.sqlite.org/session/sqlite3changeset_apply.html"><code>sqlite3changeset_apply()</code></a>.</p>
<pre><code class="language-js"><span class="hljs-keyword">const</span> sourceDb = <span class="hljs-keyword">new</span> <span class="hljs-title class_">DatabaseSync</span>(<span class="hljs-string">':memory:'</span>);
<span class="hljs-keyword">const</span> targetDb = <span class="hljs-keyword">new</span> <span class="hljs-title class_">DatabaseSync</span>(<span class="hljs-string">':memory:'</span>);

sourceDb.<span class="hljs-title function_">exec</span>(<span class="hljs-string">'CREATE TABLE data(key INTEGER PRIMARY KEY, value TEXT)'</span>);
targetDb.<span class="hljs-title function_">exec</span>(<span class="hljs-string">'CREATE TABLE data(key INTEGER PRIMARY KEY, value TEXT)'</span>);

<span class="hljs-keyword">const</span> session = sourceDb.<span class="hljs-title function_">createSession</span>();

<span class="hljs-keyword">const</span> insert = sourceDb.<span class="hljs-title function_">prepare</span>(<span class="hljs-string">'INSERT INTO data (key, value) VALUES (?, ?)'</span>);
insert.<span class="hljs-title function_">run</span>(<span class="hljs-number">1</span>, <span class="hljs-string">'hello'</span>);
insert.<span class="hljs-title function_">run</span>(<span class="hljs-number">2</span>, <span class="hljs-string">'world'</span>);

<span class="hljs-keyword">const</span> changeset = session.<span class="hljs-title function_">changeset</span>();
targetDb.<span class="hljs-title function_">applyChangeset</span>(changeset);
<span class="hljs-comment">// Now that the changeset has been applied, targetDb contains the same data as sourceDb.</span></code> <button class="copy-button">copy</button></pre>
</section><section><h3>Class: <code>Session</code><span><a class="mark" href="#class-session" id="class-session">#</a></span><a aria-hidden="true" class="legacy" id="sqlite_class_session"></a></h3>
<div class="api_metadata">
<span>Added in: v22.12.0</span>
</div>
<h4><code>session.changeset()</code><span><a class="mark" href="#sessionchangeset" id="sessionchangeset">#</a></span><a aria-hidden="true" class="legacy" id="sqlite_session_changeset"></a></h4>
<div class="api_metadata">
<span>Added in: v22.12.0</span>
</div>
<ul>
<li>Returns: <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array" class="type">&#x3C;Uint8Array></a> Binary changeset that can be applied to other databases.</li>
</ul>
<p>Retrieves a changeset containing all changes since the changeset was created. Can be called multiple times.
An exception is thrown if the database or the session is not open. This method is a wrapper around <a href="https://www.sqlite.org/session/sqlite3session_changeset.html"><code>sqlite3session_changeset()</code></a>.</p>
<h4><code>session.patchset()</code><span><a class="mark" href="#sessionpatchset" id="sessionpatchset">#</a></span><a aria-hidden="true" class="legacy" id="sqlite_session_patchset"></a></h4>
<div class="api_metadata">
<span>Added in: v22.12.0</span>
</div>
<ul>
<li>Returns: <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array" class="type">&#x3C;Uint8Array></a> Binary patchset that can be applied to other databases.</li>
</ul>
<p>Similar to the method above, but generates a more compact patchset. See <a href="https://www.sqlite.org/sessionintro.html#changesets_and_patchsets">Changesets and Patchsets</a>
in the documentation of SQLite. An exception is thrown if the database or the session is not open. This method is a
wrapper around <a href="https://www.sqlite.org/session/sqlite3session_patchset.html"><code>sqlite3session_patchset()</code></a>.</p>
<h4><code>session.close()</code>.<span><a class="mark" href="#sessionclose" id="sessionclose">#</a></span><a aria-hidden="true" class="legacy" id="sqlite_session_close"></a></h4>
<p>Closes the session. An exception is thrown if the database or the session is not open. This method is a
wrapper around <a href="https://www.sqlite.org/session/sqlite3session_delete.html"><code>sqlite3session_delete()</code></a>.</p>
</section><section><h3>Class: <code>StatementSync</code><span><a class="mark" href="#class-statementsync" id="class-statementsync">#</a></span><a aria-hidden="true" class="legacy" id="sqlite_class_statementsync"></a></h3>
<div class="api_metadata">
<span>Added in: v22.5.0</span>
</div>
<p>This class represents a single <a href="https://www.sqlite.org/c3ref/stmt.html">prepared statement</a>. This class cannot be
instantiated via its constructor. Instead, instances are created via the
<code>database.prepare()</code> method. All APIs exposed by this class execute
synchronously.</p>
<p>A prepared statement is an efficient binary representation of the SQL used to
create it. Prepared statements are parameterizable, and can be invoked multiple
times with different bound values. Parameters also offer protection against
<a href="https://en.wikipedia.org/wiki/SQL_injection">SQL injection</a> attacks. For these reasons, prepared statements are preferred
over hand-crafted SQL strings when handling user input.</p>
<h4><code>statement.all([namedParameters][, ...anonymousParameters])</code><span><a class="mark" href="#statementallnamedparameters-anonymousparameters" id="statementallnamedparameters-anonymousparameters">#</a></span><a aria-hidden="true" class="legacy" id="sqlite_statement_all_namedparameters_anonymousparameters"></a></h4>
<div class="api_metadata">
<details class="changelog"><summary>History</summary>
<table>
<tbody><tr><th>Version</th><th>Changes</th></tr>
<tr><td>v22.14.0</td>
<td><p>Add support for <code>DataView</code> and typed array objects for <code>anonymousParameters</code>.</p></td></tr>
<tr><td>v22.5.0</td>
<td><p><span>Added in: v22.5.0</span></p></td></tr>
</tbody></table>
</details>
</div>
<ul>
<li><code>namedParameters</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object" class="type">&#x3C;Object></a> An optional object used to bind named parameters.
The keys of this object are used to configure the mapping.</li>
<li><code>...anonymousParameters</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Null_type" class="type">&#x3C;null></a> | <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Number_type" class="type">&#x3C;number></a> | <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt" class="type">&#x3C;bigint></a> | <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type" class="type">&#x3C;string></a> | <a href="buffer.html#class-buffer" class="type">&#x3C;Buffer></a> | <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray" class="type">&#x3C;TypedArray></a> | <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView" class="type">&#x3C;DataView></a> Zero or
more values to bind to anonymous parameters.</li>
<li>Returns: <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array" class="type">&#x3C;Array></a> An array of objects. Each object corresponds to a row
returned by executing the prepared statement. The keys and values of each
object correspond to the column names and values of the row.</li>
</ul>
<p>This method executes a prepared statement and returns all results as an array of
objects. If the prepared statement does not return any results, this method
returns an empty array. The prepared statement <a href="https://www.sqlite.org/c3ref/bind_blob.html">parameters are bound</a> using
the values in <code>namedParameters</code> and <code>anonymousParameters</code>.</p>
<h4><code>statement.expandedSQL</code><span><a class="mark" href="#statementexpandedsql" id="statementexpandedsql">#</a></span><a aria-hidden="true" class="legacy" id="sqlite_statement_expandedsql"></a></h4>
<div class="api_metadata">
<span>Added in: v22.5.0</span>
</div>
<ul>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type" class="type">&#x3C;string></a> The source SQL expanded to include parameter values.</li>
</ul>
<p>The source SQL text of the prepared statement with parameter
placeholders replaced by the values that were used during the most recent
execution of this prepared statement. This property is a wrapper around
<a href="https://www.sqlite.org/c3ref/expanded_sql.html"><code>sqlite3_expanded_sql()</code></a>.</p>
<h4><code>statement.get([namedParameters][, ...anonymousParameters])</code><span><a class="mark" href="#statementgetnamedparameters-anonymousparameters" id="statementgetnamedparameters-anonymousparameters">#</a></span><a aria-hidden="true" class="legacy" id="sqlite_statement_get_namedparameters_anonymousparameters"></a></h4>
<div class="api_metadata">
<details class="changelog"><summary>History</summary>
<table>
<tbody><tr><th>Version</th><th>Changes</th></tr>
<tr><td>v22.14.0</td>
<td><p>Add support for <code>DataView</code> and typed array objects for <code>anonymousParameters</code>.</p></td></tr>
<tr><td>v22.5.0</td>
<td><p><span>Added in: v22.5.0</span></p></td></tr>
</tbody></table>
</details>
</div>
<ul>
<li><code>namedParameters</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object" class="type">&#x3C;Object></a> An optional object used to bind named parameters.
The keys of this object are used to configure the mapping.</li>
<li><code>...anonymousParameters</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Null_type" class="type">&#x3C;null></a> | <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Number_type" class="type">&#x3C;number></a> | <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt" class="type">&#x3C;bigint></a> | <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type" class="type">&#x3C;string></a> | <a href="buffer.html#class-buffer" class="type">&#x3C;Buffer></a> | <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray" class="type">&#x3C;TypedArray></a> | <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView" class="type">&#x3C;DataView></a> Zero or
more values to bind to anonymous parameters.</li>
<li>Returns: <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object" class="type">&#x3C;Object></a> | <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Undefined_type" class="type">&#x3C;undefined></a> An object corresponding to the first row returned
by executing the prepared statement. The keys and values of the object
correspond to the column names and values of the row. If no rows were returned
from the database then this method returns <code>undefined</code>.</li>
</ul>
<p>This method executes a prepared statement and returns the first result as an
object. If the prepared statement does not return any results, this method
returns <code>undefined</code>. The prepared statement <a href="https://www.sqlite.org/c3ref/bind_blob.html">parameters are bound</a> using the
values in <code>namedParameters</code> and <code>anonymousParameters</code>.</p>
<h4><code>statement.iterate([namedParameters][, ...anonymousParameters])</code><span><a class="mark" href="#statementiteratenamedparameters-anonymousparameters" id="statementiteratenamedparameters-anonymousparameters">#</a></span><a aria-hidden="true" class="legacy" id="sqlite_statement_iterate_namedparameters_anonymousparameters"></a></h4>
<div class="api_metadata">
<details class="changelog"><summary>History</summary>
<table>
<tbody><tr><th>Version</th><th>Changes</th></tr>
<tr><td>v22.14.0</td>
<td><p>Add support for <code>DataView</code> and typed array objects for <code>anonymousParameters</code>.</p></td></tr>
<tr><td>v22.13.0</td>
<td><p><span>Added in: v22.13.0</span></p></td></tr>
</tbody></table>
</details>
</div>
<ul>
<li><code>namedParameters</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object" class="type">&#x3C;Object></a> An optional object used to bind named parameters.
The keys of this object are used to configure the mapping.</li>
<li><code>...anonymousParameters</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Null_type" class="type">&#x3C;null></a> | <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Number_type" class="type">&#x3C;number></a> | <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt" class="type">&#x3C;bigint></a> | <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type" class="type">&#x3C;string></a> | <a href="buffer.html#class-buffer" class="type">&#x3C;Buffer></a> | <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray" class="type">&#x3C;TypedArray></a> | <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView" class="type">&#x3C;DataView></a> Zero or
more values to bind to anonymous parameters.</li>
<li>Returns: <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#The_iterator_protocol" class="type">&#x3C;Iterator></a> An iterable iterator of objects. Each object corresponds to a row
returned by executing the prepared statement. The keys and values of each
object correspond to the column names and values of the row.</li>
</ul>
<p>This method executes a prepared statement and returns an iterator of
objects. If the prepared statement does not return any results, this method
returns an empty iterator. The prepared statement <a href="https://www.sqlite.org/c3ref/bind_blob.html">parameters are bound</a> using
the values in <code>namedParameters</code> and <code>anonymousParameters</code>.</p>
<h4><code>statement.run([namedParameters][, ...anonymousParameters])</code><span><a class="mark" href="#statementrunnamedparameters-anonymousparameters" id="statementrunnamedparameters-anonymousparameters">#</a></span><a aria-hidden="true" class="legacy" id="sqlite_statement_run_namedparameters_anonymousparameters"></a></h4>
<div class="api_metadata">
<details class="changelog"><summary>History</summary>
<table>
<tbody><tr><th>Version</th><th>Changes</th></tr>
<tr><td>v22.14.0</td>
<td><p>Add support for <code>DataView</code> and typed array objects for <code>anonymousParameters</code>.</p></td></tr>
<tr><td>v22.5.0</td>
<td><p><span>Added in: v22.5.0</span></p></td></tr>
</tbody></table>
</details>
</div>
<ul>
<li><code>namedParameters</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object" class="type">&#x3C;Object></a> An optional object used to bind named parameters.
The keys of this object are used to configure the mapping.</li>
<li><code>...anonymousParameters</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Null_type" class="type">&#x3C;null></a> | <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Number_type" class="type">&#x3C;number></a> | <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt" class="type">&#x3C;bigint></a> | <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type" class="type">&#x3C;string></a> | <a href="buffer.html#class-buffer" class="type">&#x3C;Buffer></a> | <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray" class="type">&#x3C;TypedArray></a> | <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView" class="type">&#x3C;DataView></a> Zero or
more values to bind to anonymous parameters.</li>
<li>Returns: <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object" class="type">&#x3C;Object></a>
<ul>
<li><code>changes</code>: <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Number_type" class="type">&#x3C;number></a> | <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt" class="type">&#x3C;bigint></a> The number of rows modified, inserted, or deleted
by the most recently completed <code>INSERT</code>, <code>UPDATE</code>, or <code>DELETE</code> statement.
This field is either a number or a <code>BigInt</code> depending on the prepared
statement's configuration. This property is the result of
<a href="https://www.sqlite.org/c3ref/changes.html"><code>sqlite3_changes64()</code></a>.</li>
<li><code>lastInsertRowid</code>: <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Number_type" class="type">&#x3C;number></a> | <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt" class="type">&#x3C;bigint></a> The most recently inserted rowid. This
field is either a number or a <code>BigInt</code> depending on the prepared statement's
configuration. This property is the result of
<a href="https://www.sqlite.org/c3ref/last_insert_rowid.html"><code>sqlite3_last_insert_rowid()</code></a>.</li>
</ul>
</li>
</ul>
<p>This method executes a prepared statement and returns an object summarizing the
resulting changes. The prepared statement <a href="https://www.sqlite.org/c3ref/bind_blob.html">parameters are bound</a> using the
values in <code>namedParameters</code> and <code>anonymousParameters</code>.</p>
<h4><code>statement.setAllowBareNamedParameters(enabled)</code><span><a class="mark" href="#statementsetallowbarenamedparametersenabled" id="statementsetallowbarenamedparametersenabled">#</a></span><a aria-hidden="true" class="legacy" id="sqlite_statement_setallowbarenamedparameters_enabled"></a></h4>
<div class="api_metadata">
<span>Added in: v22.5.0</span>
</div>
<ul>
<li><code>enabled</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type" class="type">&#x3C;boolean></a> Enables or disables support for binding named parameters
without the prefix character.</li>
</ul>
<p>The names of SQLite parameters begin with a prefix character. By default,
<code>node:sqlite</code> requires that this prefix character is present when binding
parameters. However, with the exception of dollar sign character, these
prefix characters also require extra quoting when used in object keys.</p>
<p>To improve ergonomics, this method can be used to also allow bare named
parameters, which do not require the prefix character in JavaScript code. There
are several caveats to be aware of when enabling bare named parameters:</p>
<ul>
<li>The prefix character is still required in SQL.</li>
<li>The prefix character is still allowed in JavaScript. In fact, prefixed names
will have slightly better binding performance.</li>
<li>Using ambiguous named parameters, such as <code>$k</code> and <code>@k</code>, in the same prepared
statement will result in an exception as it cannot be determined how to bind
a bare name.</li>
</ul>
<h4><code>statement.setReadBigInts(enabled)</code><span><a class="mark" href="#statementsetreadbigintsenabled" id="statementsetreadbigintsenabled">#</a></span><a aria-hidden="true" class="legacy" id="sqlite_statement_setreadbigints_enabled"></a></h4>
<div class="api_metadata">
<span>Added in: v22.5.0</span>
</div>
<ul>
<li><code>enabled</code> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type" class="type">&#x3C;boolean></a> Enables or disables the use of <code>BigInt</code>s when reading
<code>INTEGER</code> fields from the database.</li>
</ul>
<p>When reading from the database, SQLite <code>INTEGER</code>s are mapped to JavaScript
numbers by default. However, SQLite <code>INTEGER</code>s can store values larger than
JavaScript numbers are capable of representing. In such cases, this method can
be used to read <code>INTEGER</code> data using JavaScript <code>BigInt</code>s. This method has no
impact on database write operations where numbers and <code>BigInt</code>s are both
supported at all times.</p>
<h4><code>statement.sourceSQL</code><span><a class="mark" href="#statementsourcesql" id="statementsourcesql">#</a></span><a aria-hidden="true" class="legacy" id="sqlite_statement_sourcesql"></a></h4>
<div class="api_metadata">
<span>Added in: v22.5.0</span>
</div>
<ul>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type" class="type">&#x3C;string></a> The source SQL used to create this prepared statement.</li>
</ul>
<p>The source SQL text of the prepared statement. This property is a
wrapper around <a href="https://www.sqlite.org/c3ref/expanded_sql.html"><code>sqlite3_sql()</code></a>.</p>
<h4>Type conversion between JavaScript and SQLite<span><a class="mark" href="#type-conversion-between-javascript-and-sqlite" id="type-conversion-between-javascript-and-sqlite">#</a></span><a aria-hidden="true" class="legacy" id="sqlite_type_conversion_between_javascript_and_sqlite"></a></h4>
<p>When Node.js writes to or reads from SQLite it is necessary to convert between
JavaScript data types and SQLite's <a href="https://www.sqlite.org/datatype3.html">data types</a>. Because JavaScript supports
more data types than SQLite, only a subset of JavaScript types are supported.
Attempting to write an unsupported data type to SQLite will result in an
exception.</p>





























<table><thead><tr><th>SQLite</th><th>JavaScript</th></tr></thead><tbody><tr><td><code>NULL</code></td><td><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Null_type" class="type">&#x3C;null></a></td></tr><tr><td><code>INTEGER</code></td><td><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Number_type" class="type">&#x3C;number></a> or <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt" class="type">&#x3C;bigint></a></td></tr><tr><td><code>REAL</code></td><td><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Number_type" class="type">&#x3C;number></a></td></tr><tr><td><code>TEXT</code></td><td><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type" class="type">&#x3C;string></a></td></tr><tr><td><code>BLOB</code></td><td><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array" class="type">&#x3C;Uint8Array></a></td></tr></tbody></table>
</section><section><h3><code>sqlite.constants</code><span><a class="mark" href="#sqliteconstants" id="sqliteconstants">#</a></span><a aria-hidden="true" class="legacy" id="sqlite_sqlite_constants"></a></h3>
<div class="api_metadata">
<span>Added in: v22.13.0</span>
</div>
<ul>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object" class="type">&#x3C;Object></a></li>
</ul>
<p>An object containing commonly used constants for SQLite operations.</p>
<h4>SQLite constants<span><a class="mark" href="#sqlite-constants" id="sqlite-constants">#</a></span><a aria-hidden="true" class="legacy" id="sqlite_sqlite_constants_1"></a></h4>
<p>The following constants are exported by the <code>sqlite.constants</code> object.</p>
<h5>Conflict resolution constants<span><a class="mark" href="#conflict-resolution-constants" id="conflict-resolution-constants">#</a></span><a aria-hidden="true" class="legacy" id="sqlite_conflict_resolution_constants"></a></h5>
<p>One of the following constants is available as an argument to the <code>onConflict</code>
conflict resolution handler passed to <a href="#databaseapplychangesetchangeset-options"><code>database.applyChangeset()</code></a>. See also
<a href="https://www.sqlite.org/session/c_changeset_conflict.html">Constants Passed To The Conflict Handler</a> in the SQLite documentation.</p>
<table>
  <tbody><tr>
    <th>Constant</th>
    <th>Description</th>
  </tr>
  <tr>
    <td><code>SQLITE_CHANGESET_DATA</code></td>
    <td>The conflict handler is invoked with this constant when processing a DELETE or UPDATE change if a row with the required PRIMARY KEY fields is present in the database, but one or more other (non primary-key) fields modified by the update do not contain the expected "before" values.</td>
  </tr>
  <tr>
    <td><code>SQLITE_CHANGESET_NOTFOUND</code></td>
    <td>The conflict handler is invoked with this constant when processing a DELETE or UPDATE change if a row with the required PRIMARY KEY fields is not present in the database.</td>
  </tr>
  <tr>
    <td><code>SQLITE_CHANGESET_CONFLICT</code></td>
    <td>This constant is passed to the conflict handler while processing an INSERT change if the operation would result in duplicate primary key values.</td>
  </tr>
  <tr>
    <td><code>SQLITE_CHANGESET_CONSTRAINT</code></td>
    <td>If foreign key handling is enabled, and applying a changeset leaves the database in a state containing foreign key violations, the conflict handler is invoked with this constant exactly once before the changeset is committed. If the conflict handler returns <code>SQLITE_CHANGESET_OMIT</code>, the changes, including those that caused the foreign key constraint violation, are committed. Or, if it returns <code>SQLITE_CHANGESET_ABORT</code>, the changeset is rolled back.</td>
  </tr>
  <tr>
    <td><code>SQLITE_CHANGESET_FOREIGN_KEY</code></td>
    <td>If any other constraint violation occurs while applying a change (i.e. a UNIQUE, CHECK or NOT NULL constraint), the conflict handler is invoked with this constant.</td>
  </tr>
</tbody></table>
<p>One of the following constants must be returned from the <code>onConflict</code> conflict
resolution handler passed to <a href="#databaseapplychangesetchangeset-options"><code>database.applyChangeset()</code></a>. See also
<a href="https://www.sqlite.org/session/c_changeset_abort.html">Constants Returned From The Conflict Handler</a> in the SQLite documentation.</p>
<table>
  <tbody><tr>
    <th>Constant</th>
    <th>Description</th>
  </tr>
  <tr>
    <td><code>SQLITE_CHANGESET_OMIT</code></td>
    <td>Conflicting changes are omitted.</td>
  </tr>
  <tr>
    <td><code>SQLITE_CHANGESET_REPLACE</code></td>
    <td>Conflicting changes replace existing values. Note that this value can only be returned when the type of conflict is either <code>SQLITE_CHANGESET_DATA</code> or <code>SQLITE_CHANGESET_CONFLICT</code>.</td>
  </tr>
  <tr>
    <td><code>SQLITE_CHANGESET_ABORT</code></td>
    <td>Abort when a change encounters a conflict and roll back database.</td>
  </tr>
</tbody></table></section>
        <!-- API END -->
      </div>
    </div>
  </div>
</body>
</html>