Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typo in the BindValueUserData property. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | customDataTypes |
Files: | files | file ages | folders |
SHA1: |
9449fba6d8f8efc643fc49fee6414bcd |
User & Date: | mistachkin 2016-06-20 03:25:26.510 |
Context
2016-06-20
| ||
04:50 | More improvements to test suite infrastructure helper procedures. check-in: 822b7c577c user: mistachkin tags: customDataTypes | |
03:25 | Fix typo in the BindValueUserData property. check-in: 9449fba6d8 user: mistachkin tags: customDataTypes | |
2016-06-19
| ||
23:20 | Revise data reader callback handling for the GetBytes / GetChars methods to allow for more (consistent) customization. check-in: 57b10f46c0 user: mistachkin tags: customDataTypes | |
Changes
Changes to System.Data.SQLite/SQLiteConnection.cs.
︙ | ︙ | |||
691 692 693 694 695 696 697 | /// <summary> /// The extra data to pass into the parameter binding callback. This /// value may be null. /// </summary> public object BindValueUserData { | | | 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 | /// <summary> /// The extra data to pass into the parameter binding callback. This /// value may be null. /// </summary> public object BindValueUserData { get { return bindValueUserData; } } ///////////////////////////////////////////////////////////////////////// /// <summary> /// The extra data to pass into the data reader value callback. This /// value may be null. |
︙ | ︙ |