1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

Updates to documentation and requirements marks. No code changes.

FossilOrigin-Name: 0f8102d71a0ee828629f037775ad86fe2a544120
This commit is contained in:
drh
2014-10-04 11:59:33 +00:00
parent 79f7af9a9e
commit 00729cba46
6 changed files with 35 additions and 19 deletions

View File

@@ -129,6 +129,13 @@ const unsigned char sqlite3CtypeMap[256] = {
};
#endif
/* EVIDENCE-OF: R-02982-34736 In order to maintain full backwards
** compatibility for legacy applications, the URI filename capability is
** disabled by default.
**
** EVIDENCE-OF: R-38799-08373 URI filenames can be enabled or disabled
** using the SQLITE_USE_URI=1 or SQLITE_USE_URI=0 compile-time options.
*/
#ifndef SQLITE_USE_URI
# define SQLITE_USE_URI 0
#endif