Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Remove overrides of GetHashCode/Equals from SQLiteException (added by check-in [37dcaf8f5d]) because they are superfluous and cannot readily take into account all base class state. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
242ef0c9a1eda34cb617e36f65011aba |
User & Date: | mistachkin 2018-02-08 17:45:08.975 |
Context
2018-02-20
| ||
10:46 | Test portability fixes for Mono on POSIX. check-in: ed9c4825db user: mistachkin tags: trunk | |
2018-02-08
| ||
17:45 | Remove overrides of GetHashCode/Equals from SQLiteException (added by check-in [37dcaf8f5d]) because they are superfluous and cannot readily take into account all base class state. check-in: 242ef0c9a1 user: mistachkin tags: trunk | |
06:08 | Add tests for ticket [53962f9eff]. check-in: 5c1fba537e user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/SQLiteException.cs.
︙ | ︙ | |||
213 214 215 216 217 218 219 | "\r\n", message).Trim(); #endif } /////////////////////////////////////////////////////////////////////////// #region System.Object Overrides | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | 213 214 215 216 217 218 219 220 221 222 223 224 225 226 | "\r\n", message).Trim(); #endif } /////////////////////////////////////////////////////////////////////////// #region System.Object Overrides public override string ToString() { return HelperMethods.StringFormat( CultureInfo.CurrentCulture, "code = {0} ({1}), message = {2}", _errorCode, (int)_errorCode, base.ToString()); } #endregion |
︙ | ︙ |