Skip to content

Commit

Permalink
Merge pull request #1199 from tipa/master
Browse files Browse the repository at this point in the history
Support SQLITE_OPEN_URI & SQLITE_OPEN_MEMORY flags
  • Loading branch information
praeclarum authored Mar 27, 2024
2 parents d517de3 + ad95960 commit b13ecba
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/SQLite.cs
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ public static NotNullConstraintViolationException New (SQLiteException exception
public enum SQLiteOpenFlags
{
ReadOnly = 1, ReadWrite = 2, Create = 4,
Uri = 0x40, Memory = 0x80,
NoMutex = 0x8000, FullMutex = 0x10000,
SharedCache = 0x20000, PrivateCache = 0x40000,
ProtectionComplete = 0x00100000,
Expand Down

0 comments on commit b13ecba

Please sign in to comment.