diff --git a/manifest b/manifest index 0ff82c27c9..32e0f8fc68 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Merge\slatest\strunk\schanges\swith\suri\sbranch. -D 2011-05-04T17:35:12.663 +C Fix\sa\sproblem\sin\sthe\sURI\scode\spreventing\sthe\samalgamation\sfrom\sbuilding.\sAdd\scomments\sdescribing\sSQLITE_CONFIG_URI\sand\sSQLITE_OPEN_URI\sto\ssqlite.h.in. +D 2011-05-05T12:35:33.316 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.in 7a4d9524721d40ef9ee26f93f9bd6a51dba106f2 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 @@ -179,9 +179,9 @@ F src/resolve.c 1c0f32b64f8e3f555fe1f732f9d6f501a7f05706 F src/rowset.c 69afa95a97c524ba6faf3805e717b5b7ae85a697 F src/select.c d9d440809025a58547e39f4f268c2a296bfb56ff F src/shell.c 72e7e176bf46d5c6518d15ac4ad6847c4bb5df79 -F src/sqlite.h.in 90b126a4e8515126799e6e2b7f5ba962283e38bd +F src/sqlite.h.in f865bde9a0af4cd77b85265df71a9d760e5def18 F src/sqlite3ext.h c90bd5507099f62043832d73f6425d8d5c5da754 -F src/sqliteInt.h d1794da98180a15974a5539eec5410187371adda +F src/sqliteInt.h 5a7bf51f767fb67b484f09d73cccff683731af22 F src/sqliteLimit.h 164b0e6749d31e0daa1a4589a169d31c0dec7b3d F src/status.c 7ac64842c86cec2fc1a1d0e5c16d3beb8ad332bf F src/table.c 2cd62736f845d82200acfa1287e33feb3c15d62e @@ -934,7 +934,7 @@ F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e F tool/split-sqlite3c.tcl d9be87f1c340285a3e081eb19b4a247981ed290c F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f -P 008cd0ef6b504cf4549468f795aa46f8472f0130 8f9666af5f9459cbd0305a86281d745ea6163acf -R 07deaa464fe0e27da6566a9a8b8c931b +P af279f367e01732560b8b2b6aeb5ede4f04415dd +R b650932bbc0e364498f81d36888b653d U dan -Z 357fb32ea4341029d4a78088d4acc043 +Z 505d1fe8270a91e9ebfb3524cd8d9a43 diff --git a/manifest.uuid b/manifest.uuid index 4ff58741bc..9a80005ad0 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -af279f367e01732560b8b2b6aeb5ede4f04415dd \ No newline at end of file +ea562d6d67c2f2ef8baca02a77634c21b945196f \ No newline at end of file diff --git a/src/sqlite.h.in b/src/sqlite.h.in index 50c9e1f594..d394d6c819 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -1427,6 +1427,18 @@ struct sqlite3_mem_methods { ** In a multi-threaded application, the application-defined logger ** function must be threadsafe. ** +**
| URI filenames | Results +** |
|---|---|
| file:data.db | +** Open the file "data.db" in the current directory. +** |
| file:/home/fred/data.db +** file:///home/fred/data.db +** file://localhost/home/fred/data.db | +** Open the database file "/home/fred/data.db". +** |
| file://darkstar/home/fred/data.db | +** An error. "darkstar" is not a recognized authority. +** |
| +** file:///C:/Documents%20and%20Settings/fred/Desktop/data.db +** | Windows only: Open the file "data.db" on fred's desktop on drive +** C:. If the "C:/" component were omitted from this URI, then the +** file "\Documents and Settings\fred\Desktop\data.db" would be opened +** on the current drive. Note that the %20 escaping in this example +** is not strictly necessary - space characters can be used literally +** in URI filenames. +** |
| file:data.db?mode=ro&cache=private | +** Open file "data.db" in the current directory for read-only access. +** Regardless of whether or not shared-cache mode is enabled by +** default, use a private cache. +** |
| file:/home/fred/data.db?vfs=unix-nolock | +** Open file "/home/fred/data.db". Use the special VFS "unix-nolock". +** |
| file:data.db?mode=readonly | +** An error. "readonly" is not a valid option for the "mode" parameter. +** |