Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Adapt to internal changes in the upstream SQLite core library. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
bae5ecaea3c2e2ac066d120fb10bd26a |
User & Date: | mistachkin 2016-07-08 21:23:29.773 |
Context
2016-07-22
| ||
22:18 | Add support for setting all the on/off style database configuration options, including SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER. Fix for [f64f4aee95]. check-in: 3a27201398 user: mistachkin tags: trunk | |
2016-07-08
| ||
21:23 | Adapt to internal changes in the upstream SQLite core library. check-in: bae5ecaea3 user: mistachkin tags: trunk | |
2016-07-02
| ||
03:58 | Update references to the MSVC 2015 redistributable. check-in: 0492ba92d3 user: mistachkin tags: trunk | |
Changes
Changes to SQLite.Interop/src/generic/interop.c.
︙ | ︙ | |||
1067 1068 1069 1070 1071 1072 1073 | #else if (pC->pCursor == NULL) #endif { ret = SQLITE_ERROR; break; } | | > > | 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 | #else if (pC->pCursor == NULL) #endif { ret = SQLITE_ERROR; break; } #if SQLITE_VERSION_NUMBER >= 3014000 *prowid = sqlite3BtreeIntegerKey(pC->uc.pCursor); #elif SQLITE_VERSION_NUMBER >= 3010000 sqlite3BtreeKeySize(pC->uc.pCursor, prowid); #else sqlite3BtreeKeySize(pC->pCursor, prowid); #endif if (prowid) *prowid = *prowid; } break; |
︙ | ︙ |