Skip to content

Commit b13ecba

Browse files
authored
Merge pull request praeclarum#1199 from tipa/master
Support SQLITE_OPEN_URI & SQLITE_OPEN_MEMORY flags
2 parents d517de3 + ad95960 commit b13ecba

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/SQLite.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ public static NotNullConstraintViolationException New (SQLiteException exception
114114
public enum SQLiteOpenFlags
115115
{
116116
ReadOnly = 1, ReadWrite = 2, Create = 4,
117+
Uri = 0x40, Memory = 0x80,
117118
NoMutex = 0x8000, FullMutex = 0x10000,
118119
SharedCache = 0x20000, PrivateCache = 0x40000,
119120
ProtectionComplete = 0x00100000,

0 commit comments

Comments
 (0)