Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typo in comment. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
316547450cd4cd6232e52f58b010e533 |
User & Date: | mistachkin 2012-10-19 20:30:55.218 |
Context
2012-10-21
| ||
00:35 | Fix typo in version history docs. check-in: 556514d92e user: mistachkin tags: trunk | |
2012-10-19
| ||
20:30 | Fix typo in comment. check-in: 316547450c user: mistachkin tags: trunk | |
2012-10-18
| ||
16:51 | Improve automatic detection of the sqlite3_close_v2 function when compiled to use the standard SQLite library. check-in: cf55a3e9b9 user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/SQLiteConnection.cs.
︙ | ︙ | |||
458 459 460 461 462 463 464 | SQLiteLog.Initialize(); #if SQLITE_STANDARD // // NOTE: Check if the sqlite3_close_v2() native API should be available // to use. This must be done dynamically because the delegate set // here is used by the SQLiteConnectionHandle class, which is a | | | | 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 | SQLiteLog.Initialize(); #if SQLITE_STANDARD // // NOTE: Check if the sqlite3_close_v2() native API should be available // to use. This must be done dynamically because the delegate set // here is used by the SQLiteConnectionHandle class, which is a // CriticalHandle derived class (i.e. protected by a constrained // execution region). Therefore, if the underlying native entry // point is unavailable, an exception will be raised even if it is // never actually called (i.e. because the runtime eagerly prepares // all the methods in the call graph of the constrained execution // region). // lock (_syncRoot) { if (_versionNumber == 0) { _versionNumber = SQLite3.SQLiteVersionNumber; |
︙ | ︙ |