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: |
670ca52ab6b22a2721d290038e13f2dd |
User & Date: | mistachkin 2013-07-17 20:48:54.762 |
Context
2013-07-17
| ||
20:55 | Another comment fix. check-in: 23091b23c4 user: mistachkin tags: trunk | |
20:48 | Fix typo in comment. check-in: 670ca52ab6 user: mistachkin tags: trunk | |
20:43 | Make the SQLiteModuleEnumerable.GetRowIdFromObject method return unique values within the context of the current cursor. check-in: a3c636157e user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/SQLiteModuleEnumerable.cs.
︙ | ︙ | |||
435 436 437 438 439 440 441 | /////////////////////////////////////////////////////////////////////// /// <summary> /// Constructs an <see cref="Int64" /> unique row identifier from two /// <see cref="Int32" /> values. The first <see cref="Int32" /> value /// must contain the row sequence number for the current row and the | | | 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 | /////////////////////////////////////////////////////////////////////// /// <summary> /// Constructs an <see cref="Int64" /> unique row identifier from two /// <see cref="Int32" /> values. The first <see cref="Int32" /> value /// must contain the row sequence number for the current row and the /// second value must contain the hash code of the enumerator value /// for the current row. /// </summary> /// <param name="rowIndex"> /// The integer row sequence number for the current row. /// </param> /// <param name="hashCode"> /// The hash code of the enumerator value for the current row. |
︙ | ︙ |