You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sys/sqlite3/conn.go
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -48,9 +48,9 @@ const (
48
48
SQLITE_OPEN_FULLMUTEXOpenFlags=C.SQLITE_OPEN_FULLMUTEX// The new database connection will use the "serialized" threading mode. This means the multiple threads can safely attempt to use the same database connection at the same time. (Mutexes will block any actual concurrency, but in this mode there is no harm in trying.)
49
49
SQLITE_OPEN_SHAREDCACHEOpenFlags=C.SQLITE_OPEN_SHAREDCACHE// The database is opened shared cache enabled, overriding the default shared cache setting provided by sqlite3_enable_shared_cache().
50
50
SQLITE_OPEN_PRIVATECACHEOpenFlags=C.SQLITE_OPEN_PRIVATECACHE// The database is opened shared cache disabled, overriding the default shared cache setting provided by sqlite3_enable_shared_cache().
51
-
SQLITE_OPEN_NOFOLLOWOpenFlags=C.SQLITE_OPEN_NOFOLLOW// The database filename is not allowed to be a symbolic link
52
-
SQLITE_OPEN_MIN=SQLITE_OPEN_READONLY
53
-
SQLITE_OPEN_MAX=SQLITE_OPEN_NOFOLLOW
51
+
// SQLITE_OPEN_NOFOLLOW OpenFlags = C.SQLITE_OPEN_NOFOLLOW // The database filename is not allowed to be a symbolic link
0 commit comments