Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Sync up extended error codes with the SQLite core library. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
c6cacbbfa5c1eb607824c8d6e61fd21c |
User & Date: | mistachkin 2015-08-21 19:53:57.582 |
Context
2015-08-25
| ||
21:16 | Remove duplicate (and incorrect for Visual Studio 2015) link from the download page. check-in: 463bcfb351 user: mistachkin tags: trunk | |
2015-08-21
| ||
19:53 | Sync up extended error codes with the SQLite core library. check-in: c6cacbbfa5 user: mistachkin tags: trunk | |
01:36 | Improve NuGet package descriptions on the FAQ and download pages. check-in: e35dd9e966 user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/SQLiteException.cs.
︙ | ︙ | |||
442 443 444 445 446 447 448 449 450 451 452 453 454 455 | /// </summary> IoErr_GetTempPath = (IoErr | (25 << 8)), /// <summary> /// A path string conversion operation failed. /// </summary> IoErr_ConvPath = (IoErr | (26 << 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> Busy_Recovery = (Busy | (1 << 8)), | > > > > | 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 | /// </summary> IoErr_GetTempPath = (IoErr | (25 << 8)), /// <summary> /// 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> Busy_Recovery = (Busy | (1 << 8)), |
︙ | ︙ |