Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | When available, make "win32-longpath" the default VFS on Windows and Cygwin |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
6e31396fafa695483b90796426850fcb |
| User & Date: | jan.nijtmans 2013-11-30 09:28:30.614 |
Context
|
2013-12-03
| ||
| 03:16 | Update the built-in SQLite to the 3.8.2 first release candidate. check-in: 81d24c6bfe user: drh tags: trunk | |
|
2013-11-30
| ||
| 09:30 | merge trunk check-in: 97fb78b656 user: jan.nijtmans tags: hidden-tag | |
| 09:28 | When available, make "win32-longpath" the default VFS on Windows and Cygwin check-in: 6e31396faf user: jan.nijtmans tags: trunk | |
|
2013-11-29
| ||
| 11:26 | When configuring fossil using "--disable-internal-sqlite" (having SQLite 3.8.1 installed), "./fossil version -v" gives: "SQLite 3.8.2 2013-11-27 14:50:51 c75f561f33", which was not the SQLite version compiled with, neither the SQLite version actually running (3.8.1). check-in: d780693181 user: jan.nijtmans tags: trunk | |
Changes
Changes to src/db.c.
| ︙ | ︙ | |||
715 716 717 718 719 720 721 722 723 724 725 726 727 728 |
sqlite3 *db;
#if defined(__CYGWIN__)
zDbName = fossil_utf8_to_filename(zDbName);
#endif
if( g.fSqlTrace ) fossil_trace("-- sqlite3_open: [%s]\n", zDbName);
zVfs = fossil_getenv("FOSSIL_VFS");
rc = sqlite3_open_v2(
zDbName, &db,
SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE,
zVfs
);
if( rc!=SQLITE_OK ){
db_err("[%s]: %s", zDbName, sqlite3_errmsg(db));
| > > > > > | 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 |
sqlite3 *db;
#if defined(__CYGWIN__)
zDbName = fossil_utf8_to_filename(zDbName);
#endif
if( g.fSqlTrace ) fossil_trace("-- sqlite3_open: [%s]\n", zDbName);
zVfs = fossil_getenv("FOSSIL_VFS");
#if defined(_WIN32) || defined(__CYGWIN__)
if( zVfs==0 && sqlite3_libversion_number()>=3008001 ){
zVfs = "win32-longpath";
}
#endif
rc = sqlite3_open_v2(
zDbName, &db,
SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE,
zVfs
);
if( rc!=SQLITE_OK ){
db_err("[%s]: %s", zDbName, sqlite3_errmsg(db));
|
| ︙ | ︙ |