We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d027105 commit a0e5886Copy full SHA for a0e5886
README.md
@@ -33,6 +33,7 @@ FUTURE TODO: better documentation of API and some internal details
33
### SQLite build flags
34
35
- `-DSQLITE_THREADSAFE=1`
36
+- `-DSQLITE_DEFAULT_SYNCHRONOUS=3`
37
- `-DSQLITE_DEFAULT_MEMSTATUS=0`
38
- `-DSQLITE_OMIT_DECLTYPE`
39
- `-DSQLITE_OMIT_DEPRECATED`
jni/Android.mk
@@ -12,6 +12,7 @@ LOCAL_MODULE := sqlc-native-driver
12
LOCAL_C_INCLUDES := $(LOCAL_PATH)/../sqlite-amalgamation
13
14
LOCAL_CFLAGS += -DSQLITE_THREADSAFE=1
15
+LOCAL_CFLAGS += -DSQLITE_DEFAULT_SYNCHRONOUS=3
16
LOCAL_CFLAGS += -DSQLITE_DEFAULT_MEMSTATUS=0
17
LOCAL_CFLAGS += -DSQLITE_OMIT_DECLTYPE
18
LOCAL_CFLAGS += -DSQLITE_OMIT_DEPRECATED
0 commit comments