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 ff1d40a commit a0ed6abCopy full SHA for a0ed6ab
src/SQLiteNestedVFS.h
@@ -1060,6 +1060,10 @@ class VFS : public SQLiteVFS::Wrapper {
1060
flags &= ~(SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE);
1061
flags |= SQLITE_OPEN_READONLY;
1062
vfs = "web";
1063
+ if (sqlite3_uri_parameter(zName, "web_log")) {
1064
+ outer_db_uri +=
1065
+ "?web_log=" + urlencode(sqlite3_uri_parameter(zName, "web_log"));
1066
+ }
1067
} else if (unsafe) {
1068
outer_db_uri += "?nolock=1&psow=1";
1069
} else if (sqlite3_uri_boolean(zName, "immutable", 0)) {
0 commit comments