drizzle-sqlite 0.1.15

A type-safe SQL query builder for Rust
Documentation
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
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
//! `SQLite` PRAGMA statements for database configuration and introspection
//!
//! This module provides type-safe, ergonomic access to `SQLite`'s PRAGMA statements.
//! PRAGMA statements are SQL extension specific to `SQLite` and are used to modify
//! the operation of the `SQLite` library or to query the `SQLite` library for internal
//! (non-table) data.
//!
//! [SQLite PRAGMA Documentation](https://sqlite.org/pragma.html)
//!
//! ## Features
//!
//! - **Type Safety**: Enums for all pragma values (no string literals needed)
//! - **Ergonomic API**: Uses `&'static str` instead of `String` - no `.to_string()` calls
//! - **Documentation Links**: Each pragma links to official `SQLite` documentation
//! - **`ToSQL` Integration**: Seamless integration with the query builder
//!
//! ## Categories
//!
//! - **Configuration**: `foreign_keys`, `journal_mode`, `wal_autocheckpoint`, `cache_spill`, etc.
//! - **Introspection**: `table_info`, `index_list`, `compile_options`, etc.
//! - **Maintenance**: `integrity_check`, `incremental_vacuum`, `wal_checkpoint`, etc.
//!
//! ## Examples
//!
//! ```
//! use drizzle_sqlite::pragma::{Pragma, JournalMode, AutoVacuum};
//! use drizzle_core::ToSQL;
//!
//! // Enable foreign key constraints
//! let pragma = Pragma::foreign_keys(true);
//! assert_eq!(pragma.to_sql().sql(), "PRAGMA foreign_keys = ON");
//!
//! // Set journal mode to WAL
//! let pragma = Pragma::journal_mode(JournalMode::Wal);
//! assert_eq!(pragma.to_sql().sql(), "PRAGMA journal_mode = WAL");
//!
//! // Get table schema information
//! let pragma = Pragma::table_info("users");
//! assert_eq!(pragma.to_sql().sql(), "PRAGMA table_info(users)");
//!
//! // Check database integrity
//! let pragma = Pragma::integrity_check(None);
//! assert_eq!(pragma.to_sql().sql(), "PRAGMA integrity_check");
//! ```

#[cfg(not(feature = "std"))]
use crate::prelude::*;
use crate::values::SQLiteValue;
use drizzle_core::{SQL, ToSQL};

/// Auto-vacuum modes for `SQLite` databases
///
/// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_auto_vacuum)
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum AutoVacuum {
    /// Disable auto-vacuum
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::AutoVacuum;
    /// # use drizzle_core::ToSQL;
    /// assert_eq!(AutoVacuum::None.to_sql().sql(), "NONE");
    /// ```
    None,

    /// Enable full auto-vacuum
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::AutoVacuum;
    /// # use drizzle_core::ToSQL;
    /// assert_eq!(AutoVacuum::Full.to_sql().sql(), "FULL");
    /// ```
    Full,

    /// Enable incremental auto-vacuum
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::AutoVacuum;
    /// # use drizzle_core::ToSQL;
    /// assert_eq!(AutoVacuum::Incremental.to_sql().sql(), "INCREMENTAL");
    /// ```
    Incremental,
}

/// Journal modes for `SQLite` databases
///
/// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_journal_mode)
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum JournalMode {
    /// Delete journal file after each transaction
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::JournalMode;
    /// # use drizzle_core::ToSQL;
    /// assert_eq!(JournalMode::Delete.to_sql().sql(), "DELETE");
    /// ```
    Delete,

    /// Truncate journal file after each transaction
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::JournalMode;
    /// # use drizzle_core::ToSQL;
    /// assert_eq!(JournalMode::Truncate.to_sql().sql(), "TRUNCATE");
    /// ```
    Truncate,

    /// Keep journal file persistent
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::JournalMode;
    /// # use drizzle_core::ToSQL;
    /// assert_eq!(JournalMode::Persist.to_sql().sql(), "PERSIST");
    /// ```
    Persist,

    /// Store journal in memory
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::JournalMode;
    /// # use drizzle_core::ToSQL;
    /// assert_eq!(JournalMode::Memory.to_sql().sql(), "MEMORY");
    /// ```
    Memory,

    /// Write-Ahead Logging mode
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::JournalMode;
    /// # use drizzle_core::ToSQL;
    /// assert_eq!(JournalMode::Wal.to_sql().sql(), "WAL");
    /// ```
    Wal,

    /// Disable journaling
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::JournalMode;
    /// # use drizzle_core::ToSQL;
    /// assert_eq!(JournalMode::Off.to_sql().sql(), "OFF");
    /// ```
    Off,
}

/// Synchronous modes for `SQLite` databases
///
/// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_synchronous)
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum Synchronous {
    /// No syncing - fastest but least safe
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::Synchronous;
    /// # use drizzle_core::ToSQL;
    /// assert_eq!(Synchronous::Off.to_sql().sql(), "OFF");
    /// ```
    Off,

    /// Sync at critical moments - good balance
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::Synchronous;
    /// # use drizzle_core::ToSQL;
    /// assert_eq!(Synchronous::Normal.to_sql().sql(), "NORMAL");
    /// ```
    Normal,

    /// Sync frequently - safest but slower
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::Synchronous;
    /// # use drizzle_core::ToSQL;
    /// assert_eq!(Synchronous::Full.to_sql().sql(), "FULL");
    /// ```
    Full,

    /// Like FULL with additional syncing
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::Synchronous;
    /// # use drizzle_core::ToSQL;
    /// assert_eq!(Synchronous::Extra.to_sql().sql(), "EXTRA");
    /// ```
    Extra,
}

/// Storage modes for temporary tables and indices
///
/// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_temp_store)
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum TempStore {
    /// Use default storage mode
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::TempStore;
    /// # use drizzle_core::ToSQL;
    /// assert_eq!(TempStore::Default.to_sql().sql(), "DEFAULT");
    /// ```
    Default,

    /// Store temporary tables in files
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::TempStore;
    /// # use drizzle_core::ToSQL;
    /// assert_eq!(TempStore::File.to_sql().sql(), "FILE");
    /// ```
    File,

    /// Store temporary tables in memory
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::TempStore;
    /// # use drizzle_core::ToSQL;
    /// assert_eq!(TempStore::Memory.to_sql().sql(), "MEMORY");
    /// ```
    Memory,
}

/// Database locking modes
///
/// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_locking_mode)
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum LockingMode {
    /// Normal locking mode - allows multiple readers
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::LockingMode;
    /// # use drizzle_core::ToSQL;
    /// assert_eq!(LockingMode::Normal.to_sql().sql(), "NORMAL");
    /// ```
    Normal,

    /// Exclusive locking mode - single connection only
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::LockingMode;
    /// # use drizzle_core::ToSQL;
    /// assert_eq!(LockingMode::Exclusive.to_sql().sql(), "EXCLUSIVE");
    /// ```
    Exclusive,
}

/// Secure delete modes for `SQLite`
///
/// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_secure_delete)
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum SecureDelete {
    /// Disable secure delete
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::SecureDelete;
    /// # use drizzle_core::ToSQL;
    /// assert_eq!(SecureDelete::Off.to_sql().sql(), "OFF");
    /// ```
    Off,

    /// Enable secure delete - overwrite deleted data
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::SecureDelete;
    /// # use drizzle_core::ToSQL;
    /// assert_eq!(SecureDelete::On.to_sql().sql(), "ON");
    /// ```
    On,

    /// Fast secure delete - partial overwriting
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::SecureDelete;
    /// # use drizzle_core::ToSQL;
    /// assert_eq!(SecureDelete::Fast.to_sql().sql(), "FAST");
    /// ```
    Fast,
}

/// Encoding types for `SQLite` databases
///
/// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_encoding)
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum Encoding {
    /// UTF-8 encoding
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::Encoding;
    /// # use drizzle_core::ToSQL;
    /// assert_eq!(Encoding::Utf8.to_sql().sql(), "UTF-8");
    /// ```
    Utf8,

    /// UTF-16 little endian encoding
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::Encoding;
    /// # use drizzle_core::ToSQL;
    /// assert_eq!(Encoding::Utf16Le.to_sql().sql(), "UTF-16LE");
    /// ```
    Utf16Le,

    /// UTF-16 big endian encoding
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::Encoding;
    /// # use drizzle_core::ToSQL;
    /// assert_eq!(Encoding::Utf16Be.to_sql().sql(), "UTF-16BE");
    /// ```
    Utf16Be,
}

/// Cache spill settings for `SQLite` databases
///
/// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_cache_spill)
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum CacheSpill {
    /// Enable or disable cache spilling
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::CacheSpill;
    /// # use drizzle_core::ToSQL;
    /// let setting = CacheSpill::Enabled(true);
    /// assert_eq!(setting.to_sql().sql(), "ON");
    /// ```
    Enabled(bool),

    /// Set the spill threshold (pages)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::CacheSpill;
    /// # use drizzle_core::ToSQL;
    /// let setting = CacheSpill::Pages(1000);
    /// assert_eq!(setting.to_sql().sql(), "1000");
    /// ```
    Pages(i32),
}

/// WAL checkpoint modes
///
/// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_wal_checkpoint)
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum WalCheckpointMode {
    /// Passive checkpoint
    Passive,
    /// Full checkpoint
    Full,
    /// Restart checkpoint
    Restart,
    /// Truncate checkpoint
    Truncate,
    /// No-op checkpoint (query status only)
    Noop,
}

/// Writable schema modes (test-only)
///
/// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_writable_schema)
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum WritableSchema {
    /// Enable or disable writable schema mode
    Enabled(bool),
    /// Reset the `writable_schema` setting
    Reset,
}

/// `SQLite` pragma statements for database configuration and introspection
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum Pragma {
    // Read/Write Configuration Pragmas
    /// Set or query the 32-bit signed big-endian application ID
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_application_id)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::Pragma;
    /// # use drizzle_core::ToSQL;
    /// let pragma = Pragma::ApplicationId(12345);
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA application_id = 12345");
    /// ```
    ApplicationId(i32),

    /// Query or set the auto-vacuum status in the database
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_auto_vacuum)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::{Pragma, AutoVacuum};
    /// # use drizzle_core::ToSQL;
    /// let pragma = Pragma::AutoVacuum(AutoVacuum::Full);
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA auto_vacuum = FULL");
    /// ```
    AutoVacuum(AutoVacuum),

    /// Suggest maximum number of database disk pages in memory
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_cache_size)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::Pragma;
    /// # use drizzle_core::ToSQL;
    /// let pragma = Pragma::CacheSize(-2000);
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA cache_size = -2000");
    /// ```
    CacheSize(i32),

    /// Query, set, or clear the enforcement of foreign key constraints
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_foreign_keys)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::Pragma;
    /// # use drizzle_core::ToSQL;
    /// let pragma = Pragma::ForeignKeys(true);
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA foreign_keys = ON");
    ///
    /// let pragma = Pragma::ForeignKeys(false);
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA foreign_keys = OFF");
    /// ```
    ForeignKeys(bool),

    /// Query or set the journal mode for databases
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_journal_mode)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::{Pragma, JournalMode};
    /// # use drizzle_core::ToSQL;
    /// let pragma = Pragma::JournalMode(JournalMode::Wal);
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA journal_mode = WAL");
    /// ```
    JournalMode(JournalMode),

    /// Query or set the WAL auto-checkpoint threshold (pages)
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_wal_autocheckpoint)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::Pragma;
    /// # use drizzle_core::ToSQL;
    /// let pragma = Pragma::WalAutocheckpoint(1000);
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA wal_autocheckpoint = 1000");
    /// ```
    WalAutocheckpoint(i32),

    /// Control how aggressively `SQLite` will write data
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_synchronous)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::{Pragma, Synchronous};
    /// # use drizzle_core::ToSQL;
    /// let pragma = Pragma::Synchronous(Synchronous::Normal);
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA synchronous = NORMAL");
    /// ```
    Synchronous(Synchronous),

    /// Query or set the storage mode used by temporary tables and indices
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_temp_store)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::{Pragma, TempStore};
    /// # use drizzle_core::ToSQL;
    /// let pragma = Pragma::TempStore(TempStore::Memory);
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA temp_store = MEMORY");
    /// ```
    TempStore(TempStore),

    /// Query or set the database connection locking-mode
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_locking_mode)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::{Pragma, LockingMode};
    /// # use drizzle_core::ToSQL;
    /// let pragma = Pragma::LockingMode(LockingMode::Exclusive);
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA locking_mode = EXCLUSIVE");
    /// ```
    LockingMode(LockingMode),

    /// Query or set the secure-delete setting
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_secure_delete)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::{Pragma, SecureDelete};
    /// # use drizzle_core::ToSQL;
    /// let pragma = Pragma::SecureDelete(SecureDelete::Fast);
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA secure_delete = FAST");
    /// ```
    SecureDelete(SecureDelete),

    /// Set or get the user-version integer
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_user_version)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::Pragma;
    /// # use drizzle_core::ToSQL;
    /// let pragma = Pragma::UserVersion(42);
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA user_version = 42");
    /// ```
    UserVersion(i32),

    /// Query or set the text encoding used by the database
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_encoding)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::{Pragma, Encoding};
    /// # use drizzle_core::ToSQL;
    /// let pragma = Pragma::Encoding(Encoding::Utf8);
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA encoding = UTF-8");
    /// ```
    Encoding(Encoding),

    /// Query or set the database page size in bytes
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_page_size)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::Pragma;
    /// # use drizzle_core::ToSQL;
    /// let pragma = Pragma::PageSize(4096);
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA page_size = 4096");
    /// ```
    PageSize(i32),

    /// Query or set the maximum memory map size
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_mmap_size)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::Pragma;
    /// # use drizzle_core::ToSQL;
    /// let pragma = Pragma::MmapSize(268435456);
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA mmap_size = 268435456");
    /// ```
    MmapSize(i64),

    /// Enable or disable recursive trigger firing
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_recursive_triggers)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::Pragma;
    /// # use drizzle_core::ToSQL;
    /// let pragma = Pragma::RecursiveTriggers(true);
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA recursive_triggers = ON");
    /// ```
    RecursiveTriggers(bool),

    /// Query or set the ANALYZE limit
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_analysis_limit)
    AnalysisLimit(i32),

    /// Query or set automatic indexing
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_automatic_index)
    AutomaticIndex(bool),

    /// Query or set the busy timeout (milliseconds)
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_busy_timeout)
    BusyTimeout(i32),

    /// Query or set cache spill settings
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_cache_spill)
    CacheSpill(CacheSpill),

    /// Query or set `case_sensitive_like` (deprecated)
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_case_sensitive_like)
    CaseSensitiveLike(bool),

    /// Enable or disable cell size checking
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_cell_size_check)
    CellSizeCheck(bool),

    /// Enable or disable checkpoint fullfsync
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_checkpoint_fullfsync)
    CheckpointFullFsync(bool),

    /// Query or set `count_changes` (deprecated)
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_count_changes)
    CountChanges(bool),

    /// Query or set `data_store_directory` (deprecated)
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_data_store_directory)
    DataStoreDirectory(&'static str),

    /// Query or set `default_cache_size` (deprecated)
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_default_cache_size)
    DefaultCacheSize(i32),

    /// Query or set `defer_foreign_keys`
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_defer_foreign_keys)
    DeferForeignKeys(bool),

    /// Query or set `empty_result_callbacks` (deprecated)
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_empty_result_callbacks)
    EmptyResultCallbacks(bool),

    /// Query or set `full_column_names` (deprecated)
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_full_column_names)
    FullColumnNames(bool),

    /// Query or set fullfsync
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_fullfsync)
    FullFsync(bool),

    /// Query or set `hard_heap_limit`
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_hard_heap_limit)
    HardHeapLimit(i64),

    /// Query or set `ignore_check_constraints`
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_ignore_check_constraints)
    IgnoreCheckConstraints(bool),

    /// Query or set `journal_size_limit`
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_journal_size_limit)
    JournalSizeLimit(i64),

    /// Query or set `legacy_alter_table`
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_legacy_alter_table)
    LegacyAlterTable(bool),

    /// Query `legacy_file_format` (deprecated)
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_legacy_file_format)
    LegacyFileFormat,

    /// Query or set `max_page_count`
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_max_page_count)
    MaxPageCount(i32),

    /// Query or set `query_only`
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_query_only)
    QueryOnly(bool),

    /// Query or set `read_uncommitted`
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_read_uncommitted)
    ReadUncommitted(bool),

    /// Query or set `reverse_unordered_selects`
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_reverse_unordered_selects)
    ReverseUnorderedSelects(bool),

    /// Query or set `schema_version` (test-only)
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_schema_version)
    SchemaVersion(i32),

    /// Query or set `short_column_names` (deprecated)
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_short_column_names)
    ShortColumnNames(bool),

    /// Query or set `soft_heap_limit`
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_soft_heap_limit)
    SoftHeapLimit(i64),

    /// Query or set `temp_store_directory` (deprecated)
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_temp_store_directory)
    TempStoreDirectory(&'static str),

    /// Query or set threads
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_threads)
    Threads(i32),

    /// Query or set `trusted_schema`
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_trusted_schema)
    TrustedSchema(bool),

    /// Query or set `writable_schema` (test-only)
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_writable_schema)
    WritableSchema(WritableSchema),

    /// Query or set `parser_trace` (requires `SQLITE_DEBUG`)
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_parser_trace)
    ParserTrace(bool),

    /// Query or set `vdbe_addoptrace` (requires `SQLITE_DEBUG`)
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_vdbe_addoptrace)
    VdbeAddoptrace(bool),

    /// Query or set `vdbe_debug` (requires `SQLITE_DEBUG`)
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_vdbe_debug)
    VdbeDebug(bool),

    /// Query or set `vdbe_listing` (requires `SQLITE_DEBUG`)
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_vdbe_listing)
    VdbeListing(bool),

    /// Query or set `vdbe_trace` (requires `SQLITE_DEBUG`)
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_vdbe_trace)
    VdbeTrace(bool),

    // Read-Only Query Pragmas
    /// Return a list of collating sequences
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_collation_list)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::Pragma;
    /// # use drizzle_core::ToSQL;
    /// let pragma = Pragma::CollationList;
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA collation_list");
    /// ```
    CollationList,

    /// Return compile-time options used when building `SQLite`
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_compile_options)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::Pragma;
    /// # use drizzle_core::ToSQL;
    /// let pragma = Pragma::CompileOptions;
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA compile_options");
    /// ```
    CompileOptions,

    /// Return information about attached databases
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_database_list)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::Pragma;
    /// # use drizzle_core::ToSQL;
    /// let pragma = Pragma::DatabaseList;
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA database_list");
    /// ```
    DatabaseList,

    /// Return a list of SQL functions
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_function_list)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::Pragma;
    /// # use drizzle_core::ToSQL;
    /// let pragma = Pragma::FunctionList;
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA function_list");
    /// ```
    FunctionList,

    /// Return information about tables and views in the schema
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_table_list)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::Pragma;
    /// # use drizzle_core::ToSQL;
    /// let pragma = Pragma::TableList;
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA table_list");
    /// ```
    TableList,

    /// Return extended table information including hidden columns
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_table_xinfo)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::Pragma;
    /// # use drizzle_core::ToSQL;
    /// let pragma = Pragma::TableXInfo("users");
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA table_xinfo(users)");
    /// ```
    TableXInfo(&'static str),

    /// Return a list of available virtual table modules
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_module_list)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::Pragma;
    /// # use drizzle_core::ToSQL;
    /// let pragma = Pragma::ModuleList;
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA module_list");
    /// ```
    ModuleList,

    /// Return the `data_version` counter
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_data_version)
    DataVersion,

    /// Return the number of free pages in the database file
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_freelist_count)
    FreelistCount,

    /// Return the page count for the database
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_page_count)
    PageCount,

    /// Return a list of available pragmas
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_pragma_list)
    PragmaList,

    /// Return statistics (test-only)
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_stats)
    Stats,

    // Utility Pragmas
    /// Perform incremental vacuuming
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_incremental_vacuum)
    IncrementalVacuum(Option<i32>),

    /// Release as much memory as possible
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_shrink_memory)
    ShrinkMemory,

    /// Run a WAL checkpoint
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_wal_checkpoint)
    WalCheckpoint(Option<WalCheckpointMode>),

    /// Perform database integrity check
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_integrity_check)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::Pragma;
    /// # use drizzle_core::ToSQL;
    /// // Check entire database
    /// let pragma = Pragma::IntegrityCheck(None);
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA integrity_check");
    ///
    /// // Check specific table
    /// let pragma = Pragma::IntegrityCheck(Some("users"));
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA integrity_check(users)");
    /// ```
    IntegrityCheck(Option<&'static str>),

    /// Perform faster database integrity check
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_quick_check)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::Pragma;
    /// # use drizzle_core::ToSQL;
    /// let pragma = Pragma::QuickCheck(None);
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA quick_check");
    ///
    /// let pragma = Pragma::QuickCheck(Some("users"));
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA quick_check(users)");
    /// ```
    QuickCheck(Option<&'static str>),

    /// Attempt to optimize the database
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_optimize)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::Pragma;
    /// # use drizzle_core::ToSQL;
    /// let pragma = Pragma::Optimize(None);
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA optimize");
    ///
    /// let pragma = Pragma::Optimize(Some(0x10002));
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA optimize(65538)");
    /// ```
    Optimize(Option<u32>),

    /// Check foreign key constraints for a table
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_foreign_key_check)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::Pragma;
    /// # use drizzle_core::ToSQL;
    /// let pragma = Pragma::ForeignKeyCheck(None);
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA foreign_key_check");
    ///
    /// let pragma = Pragma::ForeignKeyCheck(Some("orders"));
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA foreign_key_check(orders)");
    /// ```
    ForeignKeyCheck(Option<&'static str>),

    // Table-specific Pragmas
    /// Return information about table columns
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_table_info)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::Pragma;
    /// # use drizzle_core::ToSQL;
    /// let pragma = Pragma::TableInfo("users");
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA table_info(users)");
    /// ```
    TableInfo(&'static str),

    /// Return information about table indexes
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_index_list)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::Pragma;
    /// # use drizzle_core::ToSQL;
    /// let pragma = Pragma::IndexList("users");
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA index_list(users)");
    /// ```
    IndexList(&'static str),

    /// Return information about index columns
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_index_info)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::Pragma;
    /// # use drizzle_core::ToSQL;
    /// let pragma = Pragma::IndexInfo("idx_users_email");
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA index_info(idx_users_email)");
    /// ```
    IndexInfo(&'static str),

    /// Return extended information about index columns
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_index_xinfo)
    IndexXInfo(&'static str),

    /// Return foreign key information for a table
    ///
    /// [SQLite Documentation](https://sqlite.org/pragma.html#pragma_foreign_key_list)
    ///
    /// # Example
    /// ```
    /// # use drizzle_sqlite::pragma::Pragma;
    /// # use drizzle_core::ToSQL;
    /// let pragma = Pragma::ForeignKeyList("orders");
    /// assert_eq!(pragma.to_sql().sql(), "PRAGMA foreign_key_list(orders)");
    /// ```
    ForeignKeyList(&'static str),
}

impl<'a> ToSQL<'a, SQLiteValue<'a>> for AutoVacuum {
    fn to_sql(&self) -> SQL<'a, SQLiteValue<'a>> {
        match self {
            Self::None => SQL::raw("NONE"),
            Self::Full => SQL::raw("FULL"),
            Self::Incremental => SQL::raw("INCREMENTAL"),
        }
    }
}

impl<'a> ToSQL<'a, SQLiteValue<'a>> for JournalMode {
    fn to_sql(&self) -> SQL<'a, SQLiteValue<'a>> {
        match self {
            Self::Delete => SQL::raw("DELETE"),
            Self::Truncate => SQL::raw("TRUNCATE"),
            Self::Persist => SQL::raw("PERSIST"),
            Self::Memory => SQL::raw("MEMORY"),
            Self::Wal => SQL::raw("WAL"),
            Self::Off => SQL::raw("OFF"),
        }
    }
}

impl<'a> ToSQL<'a, SQLiteValue<'a>> for Synchronous {
    fn to_sql(&self) -> SQL<'a, SQLiteValue<'a>> {
        match self {
            Self::Off => SQL::raw("OFF"),
            Self::Normal => SQL::raw("NORMAL"),
            Self::Full => SQL::raw("FULL"),
            Self::Extra => SQL::raw("EXTRA"),
        }
    }
}

impl<'a> ToSQL<'a, SQLiteValue<'a>> for TempStore {
    fn to_sql(&self) -> SQL<'a, SQLiteValue<'a>> {
        match self {
            Self::Default => SQL::raw("DEFAULT"),
            Self::File => SQL::raw("FILE"),
            Self::Memory => SQL::raw("MEMORY"),
        }
    }
}

impl<'a> ToSQL<'a, SQLiteValue<'a>> for LockingMode {
    fn to_sql(&self) -> SQL<'a, SQLiteValue<'a>> {
        match self {
            Self::Normal => SQL::raw("NORMAL"),
            Self::Exclusive => SQL::raw("EXCLUSIVE"),
        }
    }
}

impl<'a> ToSQL<'a, SQLiteValue<'a>> for SecureDelete {
    fn to_sql(&self) -> SQL<'a, SQLiteValue<'a>> {
        match self {
            Self::Off => SQL::raw("OFF"),
            Self::On => SQL::raw("ON"),
            Self::Fast => SQL::raw("FAST"),
        }
    }
}

impl<'a> ToSQL<'a, SQLiteValue<'a>> for Encoding {
    fn to_sql(&self) -> SQL<'a, SQLiteValue<'a>> {
        match self {
            Self::Utf8 => SQL::raw("UTF-8"),
            Self::Utf16Le => SQL::raw("UTF-16LE"),
            Self::Utf16Be => SQL::raw("UTF-16BE"),
        }
    }
}

impl<'a> ToSQL<'a, SQLiteValue<'a>> for CacheSpill {
    fn to_sql(&self) -> SQL<'a, SQLiteValue<'a>> {
        match self {
            Self::Enabled(enabled) => SQL::raw(if *enabled { "ON" } else { "OFF" }),
            Self::Pages(pages) => SQL::raw(format!("{pages}")),
        }
    }
}

impl<'a> ToSQL<'a, SQLiteValue<'a>> for WalCheckpointMode {
    fn to_sql(&self) -> SQL<'a, SQLiteValue<'a>> {
        match self {
            Self::Passive => SQL::raw("PASSIVE"),
            Self::Full => SQL::raw("FULL"),
            Self::Restart => SQL::raw("RESTART"),
            Self::Truncate => SQL::raw("TRUNCATE"),
            Self::Noop => SQL::raw("NOOP"),
        }
    }
}

impl<'a> ToSQL<'a, SQLiteValue<'a>> for WritableSchema {
    fn to_sql(&self) -> SQL<'a, SQLiteValue<'a>> {
        match self {
            Self::Enabled(enabled) => SQL::raw(if *enabled { "ON" } else { "OFF" }),
            Self::Reset => SQL::raw("RESET"),
        }
    }
}

fn bool_pragma<'a>(name: &str, enabled: bool) -> SQL<'a, SQLiteValue<'a>> {
    let suffix = if enabled { "ON" } else { "OFF" };
    SQL::raw(format!("PRAGMA {name} = {suffix}"))
}

/// Handles the utility pragmas where the argument is `Option<T>`.
fn utility_pragma<'a>(pragma: &Pragma) -> Option<SQL<'a, SQLiteValue<'a>>> {
    match pragma {
        Pragma::IncrementalVacuum(pages) => Some(pages.as_ref().map_or_else(
            || SQL::raw("PRAGMA incremental_vacuum"),
            |count| SQL::raw(format!("PRAGMA incremental_vacuum({count})")),
        )),
        Pragma::ShrinkMemory => Some(SQL::raw("PRAGMA shrink_memory")),
        Pragma::WalCheckpoint(mode) => Some(mode.as_ref().map_or_else(
            || SQL::raw("PRAGMA wal_checkpoint"),
            |m| SQL::raw("PRAGMA wal_checkpoint = ").append(m.to_sql()),
        )),
        Pragma::IntegrityCheck(table) => Some(table.as_ref().map_or_else(
            || SQL::raw("PRAGMA integrity_check"),
            |t| SQL::raw(format!("PRAGMA integrity_check({t})")),
        )),
        Pragma::QuickCheck(table) => Some(table.as_ref().map_or_else(
            || SQL::raw("PRAGMA quick_check"),
            |t| SQL::raw(format!("PRAGMA quick_check({t})")),
        )),
        Pragma::Optimize(mask) => Some(mask.as_ref().map_or_else(
            || SQL::raw("PRAGMA optimize"),
            |m| SQL::raw(format!("PRAGMA optimize({m})")),
        )),
        Pragma::ForeignKeyCheck(table) => Some(table.as_ref().map_or_else(
            || SQL::raw("PRAGMA foreign_key_check"),
            |t| SQL::raw(format!("PRAGMA foreign_key_check({t})")),
        )),
        _ => None,
    }
}

impl<'a> ToSQL<'a, SQLiteValue<'a>> for Pragma {
    fn to_sql(&self) -> SQL<'a, SQLiteValue<'a>> {
        if let Some(sql) = utility_pragma(self) {
            return sql;
        }
        match self {
            // Read/Write Configuration Pragmas
            Self::ApplicationId(id) => SQL::raw(format!("PRAGMA application_id = {id}")),
            Self::AutoVacuum(mode) => SQL::raw("PRAGMA auto_vacuum = ").append(mode.to_sql()),
            Self::CacheSize(size) => SQL::raw(format!("PRAGMA cache_size = {size}")),
            Self::ForeignKeys(enabled) => bool_pragma("foreign_keys", *enabled),
            Self::JournalMode(mode) => SQL::raw("PRAGMA journal_mode = ").append(mode.to_sql()),
            Self::Synchronous(mode) => SQL::raw("PRAGMA synchronous = ").append(mode.to_sql()),
            Self::WalAutocheckpoint(pages) => {
                SQL::raw(format!("PRAGMA wal_autocheckpoint = {pages}"))
            }
            Self::TempStore(store) => SQL::raw("PRAGMA temp_store = ").append(store.to_sql()),
            Self::LockingMode(mode) => SQL::raw("PRAGMA locking_mode = ").append(mode.to_sql()),
            Self::SecureDelete(mode) => SQL::raw("PRAGMA secure_delete = ").append(mode.to_sql()),
            Self::UserVersion(version) => SQL::raw(format!("PRAGMA user_version = {version}")),
            Self::Encoding(encoding) => SQL::raw("PRAGMA encoding = ").append(encoding.to_sql()),
            Self::PageSize(size) => SQL::raw(format!("PRAGMA page_size = {size}")),
            Self::MmapSize(size) => SQL::raw(format!("PRAGMA mmap_size = {size}")),
            Self::RecursiveTriggers(enabled) => bool_pragma("recursive_triggers", *enabled),
            Self::AnalysisLimit(limit) => SQL::raw(format!("PRAGMA analysis_limit = {limit}")),
            Self::AutomaticIndex(enabled) => bool_pragma("automatic_index", *enabled),
            Self::BusyTimeout(timeout) => SQL::raw(format!("PRAGMA busy_timeout = {timeout}")),
            Self::CacheSpill(setting) => SQL::raw("PRAGMA cache_spill = ").append(setting.to_sql()),
            Self::CaseSensitiveLike(enabled) => bool_pragma("case_sensitive_like", *enabled),
            Self::CellSizeCheck(enabled) => bool_pragma("cell_size_check", *enabled),
            Self::CheckpointFullFsync(enabled) => bool_pragma("checkpoint_fullfsync", *enabled),
            Self::CountChanges(enabled) => bool_pragma("count_changes", *enabled),
            Self::DataStoreDirectory(directory) => {
                SQL::raw(format!("PRAGMA data_store_directory = '{directory}'"))
            }
            Self::DefaultCacheSize(size) => SQL::raw(format!("PRAGMA default_cache_size = {size}")),
            Self::DeferForeignKeys(enabled) => bool_pragma("defer_foreign_keys", *enabled),
            Self::EmptyResultCallbacks(enabled) => bool_pragma("empty_result_callbacks", *enabled),
            Self::FullColumnNames(enabled) => bool_pragma("full_column_names", *enabled),
            Self::FullFsync(enabled) => bool_pragma("fullfsync", *enabled),
            Self::HardHeapLimit(limit) => SQL::raw(format!("PRAGMA hard_heap_limit = {limit}")),
            Self::IgnoreCheckConstraints(enabled) => {
                bool_pragma("ignore_check_constraints", *enabled)
            }
            Self::JournalSizeLimit(limit) => {
                SQL::raw(format!("PRAGMA journal_size_limit = {limit}"))
            }
            Self::LegacyAlterTable(enabled) => bool_pragma("legacy_alter_table", *enabled),
            Self::LegacyFileFormat => SQL::raw("PRAGMA legacy_file_format"),
            Self::MaxPageCount(count) => SQL::raw(format!("PRAGMA max_page_count = {count}")),
            Self::QueryOnly(enabled) => bool_pragma("query_only", *enabled),
            Self::ReadUncommitted(enabled) => bool_pragma("read_uncommitted", *enabled),
            Self::ReverseUnorderedSelects(enabled) => {
                bool_pragma("reverse_unordered_selects", *enabled)
            }
            Self::SchemaVersion(version) => SQL::raw(format!("PRAGMA schema_version = {version}")),
            Self::ShortColumnNames(enabled) => bool_pragma("short_column_names", *enabled),
            Self::SoftHeapLimit(limit) => SQL::raw(format!("PRAGMA soft_heap_limit = {limit}")),
            Self::TempStoreDirectory(directory) => {
                SQL::raw(format!("PRAGMA temp_store_directory = '{directory}'"))
            }
            Self::Threads(threads) => SQL::raw(format!("PRAGMA threads = {threads}")),
            Self::TrustedSchema(enabled) => bool_pragma("trusted_schema", *enabled),
            Self::WritableSchema(mode) => {
                SQL::raw("PRAGMA writable_schema = ").append(mode.to_sql())
            }
            Self::ParserTrace(enabled) => bool_pragma("parser_trace", *enabled),
            Self::VdbeAddoptrace(enabled) => bool_pragma("vdbe_addoptrace", *enabled),
            Self::VdbeDebug(enabled) => bool_pragma("vdbe_debug", *enabled),
            Self::VdbeListing(enabled) => bool_pragma("vdbe_listing", *enabled),
            Self::VdbeTrace(enabled) => bool_pragma("vdbe_trace", *enabled),

            // Read-Only Query Pragmas
            Self::CollationList => SQL::raw("PRAGMA collation_list"),
            Self::CompileOptions => SQL::raw("PRAGMA compile_options"),
            Self::DatabaseList => SQL::raw("PRAGMA database_list"),
            Self::FunctionList => SQL::raw("PRAGMA function_list"),
            Self::TableList => SQL::raw("PRAGMA table_list"),
            Self::TableXInfo(table) => SQL::raw(format!("PRAGMA table_xinfo({table})")),
            Self::ModuleList => SQL::raw("PRAGMA module_list"),
            Self::DataVersion => SQL::raw("PRAGMA data_version"),
            Self::FreelistCount => SQL::raw("PRAGMA freelist_count"),
            Self::PageCount => SQL::raw("PRAGMA page_count"),
            Self::PragmaList => SQL::raw("PRAGMA pragma_list"),
            Self::Stats => SQL::raw("PRAGMA stats"),

            // Utility Pragmas are routed through `utility_pragma` above.
            Self::IncrementalVacuum(_)
            | Self::ShrinkMemory
            | Self::WalCheckpoint(_)
            | Self::IntegrityCheck(_)
            | Self::QuickCheck(_)
            | Self::Optimize(_)
            | Self::ForeignKeyCheck(_) => unreachable!("routed via utility_pragma"),

            // Table-specific Pragmas
            Self::TableInfo(table) => SQL::raw(format!("PRAGMA table_info({table})")),
            Self::IndexList(table) => SQL::raw(format!("PRAGMA index_list({table})")),
            Self::IndexInfo(index) => SQL::raw(format!("PRAGMA index_info({index})")),
            Self::IndexXInfo(index) => SQL::raw(format!("PRAGMA index_xinfo({index})")),
            Self::ForeignKeyList(table) => SQL::raw(format!("PRAGMA foreign_key_list({table})")),
        }
    }
}

impl Pragma {
    /// Create a PRAGMA query to get the current value (read-only operation)
    #[must_use]
    pub fn query(pragma_name: &str) -> SQL<'static, SQLiteValue<'static>> {
        SQL::raw(format!("PRAGMA {pragma_name}"))
    }

    /// Convenience constructor for `foreign_keys` pragma
    #[must_use]
    pub const fn foreign_keys(enabled: bool) -> Self {
        Self::ForeignKeys(enabled)
    }

    /// Convenience constructor for `journal_mode` pragma
    #[must_use]
    pub const fn journal_mode(mode: JournalMode) -> Self {
        Self::JournalMode(mode)
    }

    /// Convenience constructor for `wal_autocheckpoint` pragma
    #[must_use]
    pub const fn wal_autocheckpoint(pages: i32) -> Self {
        Self::WalAutocheckpoint(pages)
    }

    /// Convenience constructor for `table_info` pragma
    #[must_use]
    pub const fn table_info(table: &'static str) -> Self {
        Self::TableInfo(table)
    }

    /// Convenience constructor for `index_list` pragma
    #[must_use]
    pub const fn index_list(table: &'static str) -> Self {
        Self::IndexList(table)
    }

    /// Convenience constructor for `foreign_key_list` pragma
    #[must_use]
    pub const fn foreign_key_list(table: &'static str) -> Self {
        Self::ForeignKeyList(table)
    }

    /// Convenience constructor for `integrity_check` pragma
    #[must_use]
    pub const fn integrity_check(table: Option<&'static str>) -> Self {
        Self::IntegrityCheck(table)
    }

    /// Convenience constructor for `foreign_key_check` pragma
    #[must_use]
    pub const fn foreign_key_check(table: Option<&'static str>) -> Self {
        Self::ForeignKeyCheck(table)
    }

    /// Convenience constructor for `table_xinfo` pragma
    #[must_use]
    pub const fn table_xinfo(table: &'static str) -> Self {
        Self::TableXInfo(table)
    }

    /// Convenience constructor for encoding pragma
    #[must_use]
    pub const fn encoding(encoding: Encoding) -> Self {
        Self::Encoding(encoding)
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_query_pragma_helper() {
        // Test the static query helper function - not covered in doc tests
        assert_eq!(Pragma::query("foreign_keys").sql(), "PRAGMA foreign_keys");
        assert_eq!(Pragma::query("custom_pragma").sql(), "PRAGMA custom_pragma");
    }

    #[test]
    fn test_convenience_constructor_integration() {
        // Test that convenience constructors work the same as direct construction
        assert_eq!(
            Pragma::foreign_keys(true).to_sql().sql(),
            Pragma::ForeignKeys(true).to_sql().sql()
        );
        assert_eq!(
            Pragma::table_info("users").to_sql().sql(),
            Pragma::TableInfo("users").to_sql().sql()
        );
        assert_eq!(
            Pragma::encoding(Encoding::Utf8).to_sql().sql(),
            Pragma::Encoding(Encoding::Utf8).to_sql().sql()
        );
    }
}