Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add a comment. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
4333bfc7db49c2e3414c6a42c88cc62b |
User & Date: | mistachkin 2018-02-08 00:34:32.439 |
Context
2018-02-08
| ||
00:38 | Add new error codes from the SQLite core library. check-in: 3e8430b58b user: mistachkin tags: trunk | |
00:34 | Add a comment. check-in: 4333bfc7db user: mistachkin tags: trunk | |
2018-02-05
| ||
08:16 | Adapt to an upstream change in the Eagle test suite infrastructure. check-in: d5928e1acd user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/SQLite3.cs.
︙ | ︙ | |||
1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 | /// </summary> private static bool? have_errstr = null; /// <summary> /// Returns the error message for the specified SQLite return code using /// the sqlite3_errstr() function, falling back to the internal lookup /// table if necessary. /// </summary> /// <param name="rc">The SQLite return code.</param> /// <returns>The error message or null if it cannot be found.</returns> internal static string GetErrorString(SQLiteErrorCode rc) { try { | > > | 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 | /// </summary> private static bool? have_errstr = null; /// <summary> /// Returns the error message for the specified SQLite return code using /// the sqlite3_errstr() function, falling back to the internal lookup /// table if necessary. /// /// WARNING: Do not remove this method, it is used via reflection. /// </summary> /// <param name="rc">The SQLite return code.</param> /// <returns>The error message or null if it cannot be found.</returns> internal static string GetErrorString(SQLiteErrorCode rc) { try { |
︙ | ︙ |