Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add the new SQLITE_IOERR_AUTH extended return code to the managed enumeration. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a914546d58f225dc7d73c7b2302cd8d9 |
User & Date: | mistachkin 2015-10-26 21:47:08.574 |
Context
2015-11-02
| ||
18:44 | Update SQLite core library to the 3.9.2 release. check-in: b75a3a7751 user: mistachkin tags: trunk | |
2015-10-26
| ||
21:47 | Add the new SQLITE_IOERR_AUTH extended return code to the managed enumeration. check-in: a914546d58 user: mistachkin tags: trunk | |
2015-10-20
| ||
03:43 | Web page updates to mention VS 2015. check-in: c012c893c1 user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/SQLiteException.cs.
︙ | ︙ | |||
445 446 447 448 449 450 451 452 453 454 455 456 457 458 | /// A path string conversion operation failed. /// </summary> IoErr_ConvPath = (IoErr | (26 << 8)), /// <summary> /// Reserved. /// </summary> IoErr_VNode = (IoErr | (27 << 8)), /// <summary> /// A database table is locked in shared-cache mode. /// </summary> Locked_SharedCache = (Locked | (1 << 8)), /// <summary> /// A database file is locked due to a recovery operation. /// </summary> | > > > > | 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 | /// A path string conversion operation failed. /// </summary> IoErr_ConvPath = (IoErr | (26 << 8)), /// <summary> /// Reserved. /// </summary> IoErr_VNode = (IoErr | (27 << 8)), /// <summary> /// An attempt to authenticate failed. /// </summary> IoErr_Auth = (IoErr | (28 << 8)), /// <summary> /// A database table is locked in shared-cache mode. /// </summary> Locked_SharedCache = (Locked | (1 << 8)), /// <summary> /// A database file is locked due to a recovery operation. /// </summary> |
︙ | ︙ |
Changes to Tests/tkt-71bedaca19.eagle.
︙ | ︙ | |||
70 71 72 73 74 75 76 77 78 79 80 81 82 83 | Error 1 Format 24 Full 13 Internal 2 Interrupt 9 IoErr 10 IoErr_Access 3338 IoErr_Blocked 2826 IoErr_CheckReservedLock 3594 IoErr_Close 4106 IoErr_ConvPath 6666 IoErr_Delete 2570 IoErr_Delete_NoEnt 5898 IoErr_Dir_Close 4362 | > | 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | Error 1 Format 24 Full 13 Internal 2 Interrupt 9 IoErr 10 IoErr_Access 3338 IoErr_Auth 7178 IoErr_Blocked 2826 IoErr_CheckReservedLock 3594 IoErr_Close 4106 IoErr_ConvPath 6666 IoErr_Delete 2570 IoErr_Delete_NoEnt 5898 IoErr_Dir_Close 4362 |
︙ | ︙ |