We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8911981 commit 751cd07Copy full SHA for 751cd07
1 file changed
src/test/java/org/sqlite/ExtensionTest.java
@@ -32,6 +32,12 @@ public void tearDown() throws Exception {
32
}
33
34
35
+ @Test
36
+ public void loadExtensionEnabled() throws Exception {
37
+ SQLiteConnection connection = (SQLiteConnection) DriverManager.getConnection("jdbc:sqlite::memory:?enable_load_extension=true");
38
+ assertThat(connection.getDatabase().getConfig().isEnabledLoadExtension()).isTrue();
39
+ }
40
+
41
@Test
42
public void extFTS3() throws Exception {
43
stat.execute("create virtual table recipe using fts3(name, ingredients)");
0 commit comments