-
Notifications
You must be signed in to change notification settings - Fork 637
/
Copy pathSQLiteConfig.java
executable file
·905 lines (786 loc) · 33.7 KB
/
SQLiteConfig.java
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
/**
* Copyright 2009 Taro L. Saito
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*--------------------------------------------------------------------------*/
//--------------------------------------
// sqlite-jdbc Project
//
// SQLiteConfig.java
// Since: Dec 8, 2009
//
// $URL$
// $Author$
//--------------------------------------
package org.sqlite;
import org.sqlite.date.FastDateFormat;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.DriverPropertyInfo;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.HashSet;
import java.util.Properties;
import java.util.Set;
import java.util.TreeSet;
/**
* SQLite Configuration
*
* See also http://www.sqlite.org/pragma.html
*
* @author leo
*
*/
public class SQLiteConfig
{
/* Date storage class*/
public final static String DEFAULT_DATE_STRING_FORMAT = "yyyy-MM-dd HH:mm:ss.SSS";
private final Properties pragmaTable;
private int openModeFlag = 0x00;
private final int busyTimeout;
/** @author Andy-2639 */
private final Set<ExtensionInfo> loadExtensions = new HashSet<ExtensionInfo>();
private final SQLiteConnectionConfig defaultConnectionConfig;
/**
* Default constructor.
*/
public SQLiteConfig() {
this(new Properties());
}
/**
* Creates an SQLite configuration object using values from the given
* property object.
* @param prop The properties to apply to the configuration.
*/
public SQLiteConfig(Properties prop) {
this.pragmaTable = prop;
String openMode = pragmaTable.getProperty(Pragma.OPEN_MODE.pragmaName);
if (openMode != null) {
openModeFlag = Integer.parseInt(openMode);
}
else {
// set the default open mode of SQLite3
setOpenMode(SQLiteOpenMode.READWRITE);
setOpenMode(SQLiteOpenMode.CREATE);
}
// Shared Cache
setSharedCache(Boolean.parseBoolean(pragmaTable.getProperty(Pragma.SHARED_CACHE.pragmaName, "false")));
// Enable URI filenames
setOpenMode(SQLiteOpenMode.OPEN_URI);
this.busyTimeout = Integer.parseInt(pragmaTable.getProperty(Pragma.BUSY_TIMEOUT.pragmaName, "3000"));
this.defaultConnectionConfig = SQLiteConnectionConfig.fromPragmaTable(pragmaTable);
String loadExtsString = pragmaTable.getProperty(Pragma.LOAD_EXTENSIONS.pragmaName);
if (loadExtsString != null) {
loadExtensions.addAll(ExtensionInfo.deserialize(loadExtsString));
}
}
public SQLiteConnectionConfig newConnectionConfig()
{
return defaultConnectionConfig.copyConfig();
}
public void loadExtension(String file, String entry) {
loadExtensions.add(new ExtensionInfo(file, entry));
}
public void loadExtension(String file) {
this.loadExtension(file, null);
}
public Set<ExtensionInfo> getLoadExtensions() {
return loadExtensions;
}
/**
* Create a new JDBC connection using the current configuration
* @return The connection.
* @throws SQLException
*/
public Connection createConnection(String url) throws SQLException {
return JDBC.createConnection(url, toProperties());
}
/**
* Configures a connection.
* @param conn The connection to configure.
* @throws SQLException
*/
public void apply(Connection conn) throws SQLException {
HashSet<String> pragmaParams = new HashSet<String>();
for (Pragma each : Pragma.values()) {
pragmaParams.add(each.pragmaName);
}
pragmaParams.remove(Pragma.OPEN_MODE.pragmaName);
pragmaParams.remove(Pragma.SHARED_CACHE.pragmaName);
pragmaParams.remove(Pragma.LOAD_EXTENSION.pragmaName);
pragmaParams.remove(Pragma.DATE_PRECISION.pragmaName);
pragmaParams.remove(Pragma.DATE_CLASS.pragmaName);
pragmaParams.remove(Pragma.DATE_STRING_FORMAT.pragmaName);
pragmaParams.remove(Pragma.PASSWORD.pragmaName);
pragmaParams.remove(Pragma.HEXKEY_MODE.pragmaName);
pragmaParams.remove(Pragma.LOAD_EXTENSIONS.pragmaName);
Statement stat = conn.createStatement();
try {
if(pragmaTable.containsKey(Pragma.PASSWORD.pragmaName)) {
String password = pragmaTable.getProperty(Pragma.PASSWORD.pragmaName);
if(password != null && !password.isEmpty()) {
String hexkeyMode = pragmaTable.getProperty(Pragma.HEXKEY_MODE.pragmaName);
String passwordPragma;
if(HexKeyMode.SSE.name().equalsIgnoreCase(hexkeyMode)) {
passwordPragma = "pragma hexkey = '%s'";
}else if(HexKeyMode.SQLCIPHER.name().equalsIgnoreCase(hexkeyMode)) {
passwordPragma = "pragma key = \"x'%s'\"";
} else {
passwordPragma = "pragma key = '%s'";
}
stat.execute(String.format(passwordPragma, password.replace("'", "''")));
stat.execute("select 1 from sqlite_master");
}
}
for (Object each : pragmaTable.keySet()) {
String key = each.toString();
if (!pragmaParams.contains(key)) {
continue;
}
String value = pragmaTable.getProperty(key);
if (value != null) {
stat.execute(String.format("pragma %s=%s", key, value));
}
}
}
finally {
if (stat != null) {
stat.close();
}
}
}
/**
* Sets a pragma to the given boolean value.
* @param pragma The pragma to set.
* @param flag The boolean value.
*/
private void set(Pragma pragma, boolean flag) {
setPragma(pragma, Boolean.toString(flag));
}
/**
* Sets a pragma to the given int value.
* @param pragma The pragma to set.
* @param num The int value.
*/
private void set(Pragma pragma, int num) {
setPragma(pragma, Integer.toString(num));
}
/**
* Checks if the provided value is the default for a given pragma.
* @param pragma The pragma on which to check.
* @param defaultValue The value to check for.
* @return True if the given value is the default value; false otherwise.
*/
private boolean getBoolean(Pragma pragma, String defaultValue) {
return Boolean.parseBoolean(pragmaTable.getProperty(pragma.pragmaName, defaultValue));
}
/**
* Checks if the shared cache option is turned on.
* @return True if turned on; false otherwise.
*/
public boolean isEnabledSharedCache() {
return getBoolean(Pragma.SHARED_CACHE, "false");
}
/**
* Checks if the load extension option is turned on.
* @return True if turned on; false otherwise.
*/
public boolean isEnabledLoadExtension() {
return getBoolean(Pragma.LOAD_EXTENSION, "false");
}
/**
* @return The open mode flags.
*/
public int getOpenModeFlags() {
return openModeFlag;
}
/**
* Sets a pragma's value.
* @param pragma The pragma to change.
* @param value The value to set it to.
*/
public void setPragma(Pragma pragma, String value) {
pragmaTable.put(pragma.pragmaName, value);
}
/**
* Convert this configuration into a Properties object, which can be
* passed to the {@link DriverManager#getConnection(String, Properties)}.
* @return The property object.
*/
public Properties toProperties() {
pragmaTable.setProperty(Pragma.OPEN_MODE.pragmaName, Integer.toString(openModeFlag));
pragmaTable.setProperty(Pragma.TRANSACTION_MODE.pragmaName, defaultConnectionConfig.getTransactionMode().getValue());
pragmaTable.setProperty(Pragma.DATE_CLASS.pragmaName, defaultConnectionConfig.getDateClass().getValue());
pragmaTable.setProperty(Pragma.DATE_PRECISION.pragmaName, defaultConnectionConfig.getDatePrecision().getValue());
pragmaTable.setProperty(Pragma.DATE_STRING_FORMAT.pragmaName, defaultConnectionConfig.getDateStringFormat());
if (loadExtensions.isEmpty()) {
pragmaTable.remove(Pragma.LOAD_EXTENSIONS.pragmaName);
} else {
pragmaTable.setProperty(
Pragma.LOAD_EXTENSIONS.pragmaName,
ExtensionInfo.serialize(loadExtensions));
}
return pragmaTable;
}
/**
* @return Array of DriverPropertyInfo objects.
*/
static DriverPropertyInfo[] getDriverPropertyInfo() {
Pragma[] pragma = Pragma.values();
DriverPropertyInfo[] result = new DriverPropertyInfo[pragma.length];
int index = 0;
for (Pragma p : Pragma.values()) {
DriverPropertyInfo di = new DriverPropertyInfo(p.pragmaName, null);
di.choices = p.choices;
di.description = p.description;
di.required = false;
result[index++] = di;
}
return result;
}
private static final String[] OnOff = new String[] { "true", "false" };
final static Set<String> pragmaSet = new TreeSet<String>();
static {
for (SQLiteConfig.Pragma pragma : SQLiteConfig.Pragma.values()) {
pragmaSet.add(pragma.pragmaName);
}
}
public static enum Pragma {
// Parameters requiring SQLite3 API invocation
OPEN_MODE("open_mode", "Database open-mode flag", null),
SHARED_CACHE("shared_cache", "Enable SQLite Shared-Cache mode, native driver only", OnOff),
LOAD_EXTENSION("enable_load_extension", "Enable SQLite load_extention() function, native driver only", OnOff),
// Pragmas that can be set after opening the database
CACHE_SIZE("cache_size"),
MMAP_SIZE("mmap_size"),
CASE_SENSITIVE_LIKE("case_sensitive_like", OnOff),
COUNT_CHANGES("count_changes", OnOff),
DEFAULT_CACHE_SIZE("default_cache_size"),
EMPTY_RESULT_CALLBACKS("empty_result_callback", OnOff),
ENCODING("encoding", toStringArray(Encoding.values())),
FOREIGN_KEYS("foreign_keys", OnOff),
FULL_COLUMN_NAMES("full_column_names", OnOff),
FULL_SYNC("fullsync", OnOff),
INCREMENTAL_VACUUM("incremental_vacuum"),
JOURNAL_MODE("journal_mode", toStringArray(JournalMode.values())),
JOURNAL_SIZE_LIMIT("journal_size_limit"),
LEGACY_FILE_FORMAT("legacy_file_format", OnOff),
LOCKING_MODE("locking_mode", toStringArray(LockingMode.values())),
PAGE_SIZE("page_size"),
MAX_PAGE_COUNT("max_page_count"),
READ_UNCOMMITED("read_uncommited", OnOff),
RECURSIVE_TRIGGERS("recursive_triggers", OnOff),
REVERSE_UNORDERED_SELECTS("reverse_unordered_selects", OnOff),
SECURE_DELETE("secure_delete", new String[] { "true", "false", "fast" }),
SHORT_COLUMN_NAMES("short_column_names", OnOff),
SYNCHRONOUS("synchronous", toStringArray(SynchronousMode.values())),
TEMP_STORE("temp_store", toStringArray(TempStore.values())),
TEMP_STORE_DIRECTORY("temp_store_directory"),
USER_VERSION("user_version"),
APPLICATION_ID("application_id"),
// Others
TRANSACTION_MODE("transaction_mode", toStringArray(TransactionMode.values())),
DATE_PRECISION("date_precision", "\"seconds\": Read and store integer dates as seconds from the Unix Epoch (SQLite standard).\n\"milliseconds\": (DEFAULT) Read and store integer dates as milliseconds from the Unix Epoch (Java standard).", toStringArray(DatePrecision.values())),
DATE_CLASS("date_class", "\"integer\": (Default) store dates as number of seconds or milliseconds from the Unix Epoch\n\"text\": store dates as a string of text\n\"real\": store dates as Julian Dates", toStringArray(DateClass.values())),
DATE_STRING_FORMAT("date_string_format", "Format to store and retrieve dates stored as text. Defaults to \"yyyy-MM-dd HH:mm:ss.SSS\"", null),
BUSY_TIMEOUT("busy_timeout", null),
HEXKEY_MODE("hexkey_mode", toStringArray(HexKeyMode.values())),
PASSWORD("password", null),
LOAD_EXTENSIONS("load_extensions"),
;
public final String pragmaName;
public final String[] choices;
public final String description;
private Pragma(String pragmaName) {
this(pragmaName, null);
}
private Pragma(String pragmaName, String[] choices) {
this(pragmaName, null, choices);
}
private Pragma(String pragmaName, String description, String[] choices) {
this.pragmaName = pragmaName;
this.description = description;
this.choices = choices;
}
public final String getPragmaName()
{
return pragmaName;
}
}
/**
* Sets the open mode flags.
* @param mode The open mode.
* @see <a href="http://www.sqlite.org/c3ref/c_open_autoproxy.html">http://www.sqlite.org/c3ref/c_open_autoproxy.html</a>
*/
public void setOpenMode(SQLiteOpenMode mode) {
openModeFlag |= mode.flag;
}
/**
* Re-sets the open mode flags.
* @param mode The open mode.
* @see <a href="http://www.sqlite.org/c3ref/c_open_autoproxy.html">http://www.sqlite.org/c3ref/c_open_autoproxy.html</a>
*/
public void resetOpenMode(SQLiteOpenMode mode) {
openModeFlag &= ~mode.flag;
}
/**
* Enables or disables the sharing of the database cache and schema data
* structures between connections to the same database.
* @param enable True to enable; false to disable.
* @see <a href="http://www.sqlite.org/c3ref/enable_shared_cache.html">www.sqlite.org/c3ref/enable_shared_cache.html</a>
*/
public void setSharedCache(boolean enable) {
set(Pragma.SHARED_CACHE, enable);
}
/**
* Enables or disables extension loading.
* @param enable True to enable; false to disable.
* @see <a href="http://www.sqlite.org/c3ref/load_extension.html">www.sqlite.org/c3ref/load_extension.html</a>
*/
public void enableLoadExtension(boolean enable) {
set(Pragma.LOAD_EXTENSION, enable);
}
/**
* Sets the read-write mode for the database.
* @param readOnly True for read-only; otherwise read-write.
*/
public void setReadOnly(boolean readOnly) {
if (readOnly) {
setOpenMode(SQLiteOpenMode.READONLY);
resetOpenMode(SQLiteOpenMode.CREATE);
resetOpenMode(SQLiteOpenMode.READWRITE);
}
else {
setOpenMode(SQLiteOpenMode.READWRITE);
setOpenMode(SQLiteOpenMode.CREATE);
resetOpenMode(SQLiteOpenMode.READONLY);
}
}
/**
* Changes the maximum number of database disk pages that SQLite will hold
* in memory at once per open database file.
* @param numberOfPages Cache size in number of pages.
* @see <a href="http://www.sqlite.org/pragma.html#pragma_cache_size">www.sqlite.org/pragma.html#pragma_cache_size</a>
*/
public void setCacheSize(int numberOfPages) {
set(Pragma.CACHE_SIZE, numberOfPages);
}
/**
* Enables or disables case sensitive for the LIKE operator.
* @param enable True to enable; false to disable.
* @see <a href="http://www.sqlite.org/pragma.html#pragma_case_sensitive_like">www.sqlite.org/pragma.html#pragma_case_sensitive_like</a>
*/
public void enableCaseSensitiveLike(boolean enable) {
set(Pragma.CASE_SENSITIVE_LIKE, enable);
}
/**
* @deprecated
* Enables or disables the count-changes flag. When enabled, INSERT, UPDATE
* and DELETE statements return the number of rows they modified.
* @param enable True to enable; false to disable.
* @see <a href="http://www.sqlite.org/pragma.html#pragma_count_changes">www.sqlite.org/pragma.html#pragma_count_changes</a>
*/
public void enableCountChanges(boolean enable) {
set(Pragma.COUNT_CHANGES, enable);
}
/**
* Sets the suggested maximum number of database disk pages that SQLite will
* hold in memory at once per open database file. The cache size set here
* persists across database connections.
* @param numberOfPages Cache size in number of pages.
* @see <a href="http://www.sqlite.org/pragma.html#pragma_cache_size">www.sqlite.org/pragma.html#pragma_cache_size</a>
*/
public void setDefaultCacheSize(int numberOfPages) {
set(Pragma.DEFAULT_CACHE_SIZE, numberOfPages);
}
/**
* @deprecated
* Enables or disables the empty_result_callbacks flag.
* @param enable True to enable; false to disable.
* false.
* @see <a href="http://www.sqlite.org/pragma.html#pragma_empty_result_callbacks">http://www.sqlite.org/pragma.html#pragma_empty_result_callbacks</a>
*/
public void enableEmptyResultCallBacks(boolean enable) {
set(Pragma.EMPTY_RESULT_CALLBACKS, enable);
}
/**
* The common interface for retrieving the available pragma parameter values.
* @author leo
*/
private static interface PragmaValue
{
public String getValue();
}
/**
* Convert the given enum values to a string array
* @param list Array if PragmaValue.
* @return String array of Enum values
*/
private static String[] toStringArray(PragmaValue[] list) {
String[] result = new String[list.length];
for (int i = 0; i < list.length; i++) {
result[i] = list[i].getValue();
}
return result;
}
public static enum Encoding implements PragmaValue {
UTF8("'UTF-8'"),
UTF16("'UTF-16'"),
UTF16_LITTLE_ENDIAN("'UTF-16le'"),
UTF16_BIG_ENDIAN("'UTF-16be'"),
UTF_8(UTF8), // UTF-8
UTF_16(UTF16), // UTF-16
UTF_16LE(UTF16_LITTLE_ENDIAN), // UTF-16le
UTF_16BE(UTF16_BIG_ENDIAN); // UTF-16be
public final String typeName;
private Encoding(String typeName) {
this.typeName = typeName;
}
private Encoding(Encoding encoding) {
this.typeName = encoding.getValue();
}
public String getValue() {
return typeName;
}
public static Encoding getEncoding(String value) {
return valueOf(value.replaceAll("-", "_").toUpperCase());
}
}
public static enum JournalMode implements PragmaValue {
DELETE, TRUNCATE, PERSIST, MEMORY, WAL, OFF;
public String getValue() {
return name();
}
}
/**
* Sets the text encoding used by the main database.
* @param encoding One of {@link Encoding}
* @see <a href="http://www.sqlite.org/pragma.html#pragma_encoding">www.sqlite.org/pragma.html#pragma_encoding</a>
*/
public void setEncoding(Encoding encoding) {
setPragma(Pragma.ENCODING, encoding.typeName);
}
/**
* Whether to enforce foreign key constraints. This setting affects the
* execution of all statements prepared using the database connection,
* including those prepared before the setting was changed.
* @param enforce True to enable; false to disable.
* @see <a href="http://www.sqlite.org/pragma.html#pragma_foreign_keys">www.sqlite.org/pragma.html#pragma_foreign_keys</a>
*/
public void enforceForeignKeys(boolean enforce) {
set(Pragma.FOREIGN_KEYS, enforce);
}
/**
* @deprecated
* Enables or disables the full_column_name flag. This flag together with
* the short_column_names flag determine the way SQLite assigns names to
* result columns of SELECT statements.
* @param enable True to enable; false to disable.
* @see <a href="http://www.sqlite.org/pragma.html#pragma_full_column_names">www.sqlite.org/pragma.html#pragma_full_column_names</a>
*/
public void enableFullColumnNames(boolean enable) {
set(Pragma.FULL_COLUMN_NAMES, enable);
}
/**
* Enables or disables the fullfsync flag. This flag determines whether or
* not the F_FULLFSYNC syncing method is used on systems that support it.
* The default value of the fullfsync flag is off. Only Mac OS X supports
* F_FULLFSYNC.
* @param enable True to enable; false to disable.
* @see <a href="http://www.sqlite.org/pragma.html#pragma_fullfsync">www.sqlite.org/pragma.html#pragma_fullfsync</a>
*/
public void enableFullSync(boolean enable) {
set(Pragma.FULL_SYNC, enable);
}
/**
* Sets the incremental_vacuum value; the number of pages to be removed from
* the <a href="http://www.sqlite.org/fileformat2.html#freelist">freelist</a>.
* The database file is truncated by the same amount.
* @param numberOfPagesToBeRemoved The number of pages to be removed.
* @see <a href="http://www.sqlite.org/pragma.html#pragma_incremental_vacuum">www.sqlite.org/pragma.html#pragma_incremental_vacuum</a>
*/
public void incrementalVacuum(int numberOfPagesToBeRemoved) {
set(Pragma.INCREMENTAL_VACUUM, numberOfPagesToBeRemoved);
}
/**
* Sets the journal mode for databases associated with the current database
* connection.
* @param mode One of {@link JournalMode}
* @see <a href="http://www.sqlite.org/pragma.html#pragma_journal_mode">www.sqlite.org/pragma.html#pragma_journal_mode</a>
*/
public void setJournalMode(JournalMode mode) {
setPragma(Pragma.JOURNAL_MODE, mode.name());
}
// public void setJournalMode(String databaseName, JournalMode mode) {
// setPragma(databaseName, Pragma.JOURNAL_MODE, mode.name());
// }
/**
* Sets the journal_size_limit. This setting limits the size of the
* rollback-journal and WAL files left in the file-system after transactions
* or checkpoints.
* @param limit Limit value in bytes. A negative number implies no limit.
* @see <a href="http://www.sqlite.org/pragma.html#pragma_journal_size_limit">www.sqlite.org/pragma.html#pragma_journal_size_limit</a>
*/
public void setJounalSizeLimit(int limit) {
set(Pragma.JOURNAL_SIZE_LIMIT, limit);
}
/**
* Sets the value of the legacy_file_format flag. When this flag is enabled,
* new SQLite databases are created in a file format that is readable and
* writable by all versions of SQLite going back to 3.0.0. When the flag is
* off, new databases are created using the latest file format which might
* not be readable or writable by versions of SQLite prior to 3.3.0.
* @param use True to turn on legacy file format; false to turn off.
* @see <a href="http://www.sqlite.org/pragma.html#pragma_legacy_file_format">www.sqlite.org/pragma.html#pragma_legacy_file_format</a>
*/
public void useLegacyFileFormat(boolean use) {
set(Pragma.LEGACY_FILE_FORMAT, use);
}
public static enum LockingMode implements PragmaValue {
NORMAL, EXCLUSIVE;
public String getValue() {
return name();
}
}
/**
* Sets the database connection locking-mode.
* @param mode One of {@link LockingMode}
* @see <a href="http://www.sqlite.org/pragma.html#pragma_locking_mode">www.sqlite.org/pragma.html#pragma_locking_mode</a>
*/
public void setLockingMode(LockingMode mode) {
setPragma(Pragma.LOCKING_MODE, mode.name());
}
// public void setLockingMode(String databaseName, LockingMode mode) {
// setPragma(databaseName, Pragma.LOCKING_MODE, mode.name());
// }
/**
* Sets the page size of the database. The page size must be a power of two
* between 512 and 65536 inclusive.
* @param numBytes A power of two between 512 and 65536 inclusive.
* @see <a href="http://www.sqlite.org/pragma.html#pragma_page_size">www.sqlite.org/pragma.html#pragma_page_size</a>
*/
public void setPageSize(int numBytes) {
set(Pragma.PAGE_SIZE, numBytes);
}
/**
* Sets the maximum number of pages in the database file.
* @param numPages Number of pages.
* @see <a href="http://www.sqlite.org/pragma.html#pragma_max_page_count">www.sqlite.org/pragma.html#pragma_max_page_count</a>
*/
public void setMaxPageCount(int numPages) {
set(Pragma.MAX_PAGE_COUNT, numPages);
}
/**
* Enables or disables useReadUncommitedIsolationMode.
* @param useReadUncommitedIsolationMode True to turn on; false to disable.
* disabled otherwise.
* @see <a href="http://www.sqlite.org/pragma.html#pragma_read_uncommitted">www.sqlite.org/pragma.html#pragma_read_uncommitted</a>
*/
public void setReadUncommited(boolean useReadUncommitedIsolationMode) {
set(Pragma.READ_UNCOMMITED, useReadUncommitedIsolationMode);
}
/**
* Enables or disables the recursive trigger capability.
* @param enable True to enable the recursive trigger capability.
* @see <a href="www.sqlite.org/pragma.html#pragma_recursive_triggers">www.sqlite.org/pragma.html#pragma_recursive_triggers</a>
*/
public void enableRecursiveTriggers(boolean enable) {
set(Pragma.RECURSIVE_TRIGGERS, enable);
}
/**
* Enables or disables the reverse_unordered_selects flag. This setting
* causes SELECT statements without an ORDER BY clause to emit their results
* in the reverse order of what they normally would. This can help debug
* applications that are making invalid assumptions about the result order.
* @param enable True to enable reverse_unordered_selects.
* @see <a href="http://www.sqlite.org/pragma.html#pragma_reverse_unordered_selects">www.sqlite.org/pragma.html#pragma_reverse_unordered_selects</a>
*/
public void enableReverseUnorderedSelects(boolean enable) {
set(Pragma.REVERSE_UNORDERED_SELECTS, enable);
}
/**
* Enables or disables the short_column_names flag. This flag affects the
* way SQLite names columns of data returned by SELECT statements.
* @param enable True to enable short_column_names.
* @see <a href="http://www.sqlite.org/pragma.html#pragma_short_column_names">www.sqlite.org/pragma.html#pragma_short_column_names</a>
*/
public void enableShortColumnNames(boolean enable) {
set(Pragma.SHORT_COLUMN_NAMES, enable);
}
public static enum SynchronousMode implements PragmaValue {
OFF, NORMAL, FULL;
public String getValue() {
return name();
}
}
/**
* Changes the setting of the "synchronous" flag.
* @param mode One of {@link SynchronousMode}:<ul>
* <li> OFF - SQLite continues without syncing as soon as it has handed
* data off to the operating system</li>
* <li> NORMAL - the SQLite database engine will still sync at the most
* critical moments, but less often than in FULL mode</li>
* <li> FULL - the SQLite database engine will use the xSync method of the
* VFS to ensure that all content is safely written to the disk surface
* prior to continuing. This ensures that an operating system crash or power
* failure will not corrupt the database.</li></ul>
* @see <a href="http://www.sqlite.org/pragma.html#pragma_synchronous">www.sqlite.org/pragma.html#pragma_synchronous</a>
*/
public void setSynchronous(SynchronousMode mode) {
setPragma(Pragma.SYNCHRONOUS, mode.name());
}
public static enum TempStore implements PragmaValue {
DEFAULT, FILE, MEMORY;
public String getValue() {
return name();
}
}
/**
* Changes the setting of the "hexkey" flag.
* @param mode One of {@link HexKeyMode}:<ul>
* <li> NONE - SQLite uses a string based password</li>
* <li> SSE - the SQLite database engine will use pragma hexkey = '' to set the password</li>
* <li> SQLCIPHER - the SQLite database engine calls pragma key = "x''" to set the password</li></ul>
*/
public void setHexKeyMode(HexKeyMode mode) {
setPragma(Pragma.HEXKEY_MODE, mode.name());
}
public static enum HexKeyMode implements PragmaValue {
NONE, SSE, SQLCIPHER;
public String getValue() {
return name();
}
}
/**
* Changes the setting of the "temp_store" parameter.
* @param storeType One of {@link TempStore}:<ul>
* <li> DEFAULT - the compile-time C preprocessor macro SQLITE_TEMP_STORE
* is used to determine where temporary tables and indices are stored</li>
* <li>FILE - temporary tables and indices are stored in a file.</li></ul>
* <li>MEMORY - temporary tables and indices are kept in as if they were pure
* in-memory databases memory</li>
* @see <a
* href="http://www.sqlite.org/pragma.html#pragma_temp_store">www.sqlite.org/pragma.html#pragma_temp_store</a>
*/
public void setTempStore(TempStore storeType) {
setPragma(Pragma.TEMP_STORE, storeType.name());
}
/**
* Changes the value of the sqlite3_temp_directory global variable, which many operating-system
* interface backends use to determine where to store temporary tables and indices.
* @param directoryName Directory name for storing temporary tables and indices.
* @see <a href="http://www.sqlite.org/pragma.html#pragma_temp_store_directory">www.sqlite.org/pragma.html#pragma_temp_store_directory</a>
*/
public void setTempStoreDirectory(String directoryName) {
setPragma(Pragma.TEMP_STORE_DIRECTORY, String.format("'%s'", directoryName));
}
/**
* Set the value of the user-version. The user-version is not used
* internally by SQLite. It may be used by applications for any purpose. The
* value is stored in the database header at offset 60.
* @param version A big-endian 32-bit signed integer.
* @see <a href="http://www.sqlite.org/pragma.html#pragma_user_version">www.sqlite.org/pragma.html#pragma_user_version</a>
*/
public void setUserVersion(int version) {
set(Pragma.USER_VERSION, version);
}
/**
* Set the value of the application-id. The application-id is not used
* internally by SQLite. Applications that use SQLite as their application file-format
* should set the Application ID integer to a unique integer so that utilities such as file(1)
* can determine the specific file type. The
* value is stored in the database header at offset 68.
* @param id A big-endian 32-bit unsigned integer.
* @see <a href="http://sqlite.org/pragma.html#pragma_application_id">www.sqlite.org/pragma.html#pragma_application_id</a>
*/
public void setApplicationId(int id){
set(Pragma.APPLICATION_ID, id);
}
public static enum TransactionMode implements PragmaValue {
DEFFERED, IMMEDIATE, EXCLUSIVE;
public String getValue() {
return name();
}
public static TransactionMode getMode(String mode) {
return TransactionMode.valueOf(mode.toUpperCase());
}
}
/**
* Sets the mode that will be used to start transactions.
* @param transactionMode One of {@link TransactionMode}.
* @see <a href="http://www.sqlite.org/lang_transaction.html">http://www.sqlite.org/lang_transaction.html</a>
*/
public void setTransactionMode(TransactionMode transactionMode) {
this.defaultConnectionConfig.setTransactionMode(transactionMode);
}
/**
* Sets the mode that will be used to start transactions.
* @param transactionMode One of DEFFERED, IMMEDIATE or EXCLUSIVE.
* @see <a href="http://www.sqlite.org/lang_transaction.html">http://www.sqlite.org/lang_transaction.html</a>
*/
public void setTransactionMode(String transactionMode) {
setTransactionMode(TransactionMode.getMode(transactionMode));
}
/**
* @return The transaction mode.
*/
public TransactionMode getTransactionMode() {
return this.defaultConnectionConfig.getTransactionMode();
}
public static enum DatePrecision implements PragmaValue {
SECONDS, MILLISECONDS;
public String getValue() {
return name();
}
public static DatePrecision getPrecision(String precision) {
return DatePrecision.valueOf(precision.toUpperCase());
}
}
/**
* @param datePrecision One of SECONDS or MILLISECONDS
* @throws SQLException
*/
public void setDatePrecision(String datePrecision) throws SQLException {
this.defaultConnectionConfig.setDatePrecision(DatePrecision.getPrecision(datePrecision));
}
public static enum DateClass implements PragmaValue {
INTEGER, TEXT, REAL;
public String getValue() {
return name();
}
public static DateClass getDateClass(String dateClass) {
return DateClass.valueOf(dateClass.toUpperCase());
}
}
/**
* @param dateClass One of INTEGER, TEXT or REAL
*/
public void setDateClass(String dateClass) {
this.defaultConnectionConfig.setDateClass(DateClass.getDateClass(dateClass));
}
/**
* @param dateStringFormat Format of date string
*/
public void setDateStringFormat(String dateStringFormat) {
this.defaultConnectionConfig.setDateStringFormat(dateStringFormat);
}
/**
* @param milliseconds Connect to DB timeout in milliseconds
*/
public void setBusyTimeout(int milliseconds) {
setPragma(Pragma.BUSY_TIMEOUT, Integer.toString(milliseconds));
}
public int getBusyTimeout() {
return busyTimeout;
}
}