Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update a couple method visibility modifiers. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
6ccd600582a2f64d164c1ede3acd47ed |
User & Date: | mistachkin 2017-06-09 23:49:38 |
Context
2017-06-10
| ||
17:38 | Merge updates from trunk. check-in: 091bc3a48a user: mistachkin tags: branch-1.0.105 | |
00:51 | Correct cursor type checking in the sqlite3_cursor_rowid_interop() function. check-in: 99b0ca713e user: mistachkin tags: trunk | |
2017-06-09
| ||
23:49 | Update a couple method visibility modifiers. check-in: 6ccd600582 user: mistachkin tags: trunk | |
2017-05-25
| ||
18:52 | Update SQLite core library to the 3.19.2 release. check-in: 4f5c9aa89f user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/SQLiteKeyReader.cs.
438 438 /// How many additional columns of keyinfo we're holding 439 439 /// </summary> 440 440 internal int Count 441 441 { 442 442 get { return (_keyInfo == null) ? 0 : _keyInfo.Length; } 443 443 } 444 444 445 - internal void Sync(int i) 445 + private void Sync(int i) 446 446 { 447 447 Sync(); 448 448 if (_keyInfo[i].cursor == -1) 449 449 throw new InvalidCastException(); 450 450 } 451 451 452 452 /// <summary> 453 453 /// Make sure all the subqueries are open and ready and sync'd with the current rowid 454 454 /// of the table they're supporting 455 455 /// </summary> 456 - internal void Sync() 456 + private void Sync() 457 457 { 458 458 if (_isValid == true) return; 459 459 460 460 KeyQuery last = null; 461 461 462 462 for (int n = 0; n < _keyInfo.Length; n++) 463 463 {