Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update list of extended error codes from the SQLite core library. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
abbed1010e18a4db983b0a35b8ac11ca |
User & Date: | mistachkin 2018-05-25 03:23:43.901 |
Context
2018-05-25
| ||
03:29 | Pickup changes to Eagle script library in externals. check-in: c5879a3ba6 user: mistachkin tags: trunk | |
03:23 | Update list of extended error codes from the SQLite core library. check-in: abbed1010e user: mistachkin tags: trunk | |
2018-05-06
| ||
20:16 | Update version history docs. check-in: e484156b86 user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/SQLiteException.cs.
︙ | ︙ | |||
720 721 722 723 724 725 726 727 728 729 730 731 732 733 | /// An attempt to rollback a file system transaction failed. /// </summary> IoErr_Rollback_Atomic = (IoErr | (31 << 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)), /// <summary> /// A database file is locked due to snapshot semantics. /// </summary> | > > > > | 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 | /// An attempt to rollback a file system transaction failed. /// </summary> IoErr_Rollback_Atomic = (IoErr | (31 << 8)), /// <summary> /// A database table is locked in shared-cache mode. /// </summary> Locked_SharedCache = (Locked | (1 << 8)), /// <summary> /// A virtual table in the database is locked. /// </summary> Locked_Vtab = (Locked | (2 << 8)), /// <summary> /// A database file is locked due to a recovery operation. /// </summary> Busy_Recovery = (Busy | (1 << 8)), /// <summary> /// A database file is locked due to snapshot semantics. /// </summary> |
︙ | ︙ | |||
748 749 750 751 752 753 754 755 756 757 758 759 760 761 | /// A database file cannot be opened because a path string conversion operation failed. /// </summary> CantOpen_ConvPath = (CantOpen | (4 << 8)), /// <summary> /// A virtual table is malformed. /// </summary> Corrupt_Vtab = (Corrupt | (1 << 8)), /// <summary> /// A database file is read-only due to a recovery operation. /// </summary> ReadOnly_Recovery = (ReadOnly | (1 << 8)), /// <summary> /// A database file is read-only because a lock could not be obtained. /// </summary> | > > > > | 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 | /// A database file cannot be opened because a path string conversion operation failed. /// </summary> CantOpen_ConvPath = (CantOpen | (4 << 8)), /// <summary> /// A virtual table is malformed. /// </summary> Corrupt_Vtab = (Corrupt | (1 << 8)), /// <summary> /// A required sequence table is missing or corrupt. /// </summary> Corrupt_Sequence = (Corrupt | (2 << 8)), /// <summary> /// A database file is read-only due to a recovery operation. /// </summary> ReadOnly_Recovery = (ReadOnly | (1 << 8)), /// <summary> /// A database file is read-only because a lock could not be obtained. /// </summary> |
︙ | ︙ |
Changes to Tests/tkt-71bedaca19.eagle.
︙ | ︙ | |||
60 61 62 63 64 65 66 67 68 69 70 71 72 73 | Constraint_NotNull 1299 Constraint_PrimaryKey 1555 Constraint_RowId 2579 Constraint_Trigger 1811 Constraint_Unique 2067 Constraint_Vtab 2323 Corrupt 11 Corrupt_Vtab 267 Done 101 Empty 16 Error 1 Error_Missing_CollSeq 257 Error_Retry 513 Format 24 | > | 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | Constraint_NotNull 1299 Constraint_PrimaryKey 1555 Constraint_RowId 2579 Constraint_Trigger 1811 Constraint_Unique 2067 Constraint_Vtab 2323 Corrupt 11 Corrupt_Sequence 523 Corrupt_Vtab 267 Done 101 Empty 16 Error 1 Error_Missing_CollSeq 257 Error_Retry 513 Format 24 |
︙ | ︙ | |||
104 105 106 107 108 109 110 111 112 113 114 115 116 117 | IoErr_Short_Read 522 IoErr_Truncate 1546 IoErr_Unlock 2058 IoErr_VNode 6922 IoErr_Write 778 Locked 6 Locked_SharedCache 262 Mismatch 20 Misuse 21 NoLfs 22 NoMem 7 NotADb 26 NotFound 12 Notice 27 | > | 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 | IoErr_Short_Read 522 IoErr_Truncate 1546 IoErr_Unlock 2058 IoErr_VNode 6922 IoErr_Write 778 Locked 6 Locked_SharedCache 262 Locked_Vtab 518 Mismatch 20 Misuse 21 NoLfs 22 NoMem 7 NotADb 26 NotFound 12 Notice 27 |
︙ | ︙ |