[vala/0.40] sqlite3: Add additional constants for flags of Database.open_v2()



commit f78afb00918384b86f5010e99446ae4e679234d5
Author: Michael James Gratton <mike vee net>
Date:   Sat Apr 28 20:46:54 2018 +1000

    sqlite3: Add additional constants for flags of Database.open_v2()
    
    https://bugzilla.gnome.org/show_bug.cgi?id=795627

 vapi/sqlite3.vapi |   12 ++++++++++++
 1 files changed, 12 insertions(+), 0 deletions(-)
---
diff --git a/vapi/sqlite3.vapi b/vapi/sqlite3.vapi
index cd331df..d6620db 100644
--- a/vapi/sqlite3.vapi
+++ b/vapi/sqlite3.vapi
@@ -224,6 +224,18 @@ namespace Sqlite {
        public const int OPEN_READWRITE;
        [CCode (cname = "SQLITE_OPEN_CREATE")]
        public const int OPEN_CREATE;
+       [CCode (cname = "SQLITE_OPEN_URI")]
+       public const int OPEN_URI;
+       [CCode (cname = "SQLITE_OPEN_MEMORY")]
+       public const int OPEN_MEMORY;
+       [CCode (cname = "SQLITE_OPEN_NOMUTEX")]
+       public const int OPEN_NOMUTEX;
+       [CCode (cname = "SQLITE_OPEN_FULLMUTEX")]
+       public const int OPEN_FULLMUTEX;
+       [CCode (cname = "SQLITE_OPEN_SHAREDCACHE")]
+       public const int OPEN_SHAREDCACHE;
+       [CCode (cname = "SQLITE_OPEN_PRIVATECACHE")]
+       public const int OPEN_PRIVATECACHE;
        [CCode (cname = "SQLITE_INTEGER")]
        public const int INTEGER;
        [CCode (cname = "SQLITE_FLOAT")]


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]