Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typos in comments. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | customDataTypes |
Files: | files | file ages | folders |
SHA1: |
819975f2c9694238dcdaf21ef73fcbf8 |
User & Date: | mistachkin 2016-06-19 07:34:12.989 |
Context
2016-06-19
| ||
08:22 | Add some procedures to the test suite infrastructure. check-in: d593d900ac user: mistachkin tags: customDataTypes | |
07:34 | Fix typos in comments. check-in: 819975f2c9 user: mistachkin tags: customDataTypes | |
07:33 | The database type name should be included in the parameters passed to the type callbacks. check-in: ab419bfca1 user: mistachkin tags: customDataTypes | |
Changes
Changes to System.Data.SQLite/SQLiteConnection.cs.
︙ | ︙ | |||
440 441 442 443 444 445 446 | /// <param name="flags"> /// The flags associated with the <see cref="SQLiteConnection" /> instance in use. /// </param> /// <param name="parameter"> /// The <see cref="SQLiteParameter" /> instance being bound to the command. /// </param> /// <param name="typeName"> | | | 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 | /// <param name="flags"> /// The flags associated with the <see cref="SQLiteConnection" /> instance in use. /// </param> /// <param name="parameter"> /// The <see cref="SQLiteParameter" /> instance being bound to the command. /// </param> /// <param name="typeName"> /// The database type name associated with this callback. /// </param> /// <param name="index"> /// The ordinal of the parameter being bound to the command. /// </param> /// <param name="userData"> /// The data originally used when registering this callback. /// </param> |
︙ | ︙ | |||
483 484 485 486 487 488 489 | /// <param name="flags"> /// The flags associated with the <see cref="SQLiteConnection" /> instance in use. /// </param> /// <param name="eventArgs"> /// The parameter and return type data for the column being read from the data reader. /// </param> /// <param name="typeName"> | | | 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 | /// <param name="flags"> /// The flags associated with the <see cref="SQLiteConnection" /> instance in use. /// </param> /// <param name="eventArgs"> /// The parameter and return type data for the column being read from the data reader. /// </param> /// <param name="typeName"> /// The database type name associated with this callback. /// </param> /// <param name="index"> /// The zero based index of the column being read from the data reader. /// </param> /// <param name="userData"> /// The data originally used when registering this callback. /// </param> |
︙ | ︙ |