Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Further improvements to comments. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | delegateFunction |
Files: | files | file ages | folders |
SHA1: |
73d28a2e59ffa5be5dbabe9cb1fe6494 |
User & Date: | mistachkin 2015-08-17 19:27:41.497 |
Context
2015-08-17
| ||
19:30 | Add support for creating custom SQL functions using delegates. check-in: 4c4566e720 user: mistachkin tags: trunk | |
19:27 | Further improvements to comments. Closed-Leaf check-in: 73d28a2e59 user: mistachkin tags: delegateFunction | |
19:08 | Fix typo in the SQLiteFunction.RegisterFunction method overload that accepts a Type object. check-in: d0a9c28bd5 user: mistachkin tags: delegateFunction | |
Changes
Changes to System.Data.SQLite/SQLiteConnection.cs.
︙ | ︙ | |||
1421 1422 1423 1424 1425 1426 1427 | /// </summary> /// <param name="functionAttribute"> /// The <see cref="SQLiteFunctionAttribute" /> object instance containing /// the metadata for the function to be bound. /// </param> /// <param name="callback1"> /// A <see cref="Delegate" /> object instance that helps implement the | > > > | | | | | 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 | /// </summary> /// <param name="functionAttribute"> /// The <see cref="SQLiteFunctionAttribute" /> object instance containing /// the metadata for the function to be bound. /// </param> /// <param name="callback1"> /// A <see cref="Delegate" /> object instance that helps implement the /// function to be bound. For scalar functions, this corresponds to the /// <see cref="SQLiteInvokeDelegate" /> type. For aggregate functions, /// this corresponds to the <see cref="SQLiteStepDelegate" /> type. For /// collation functions, this corresponds to the /// <see cref="SQLiteCompareDelegate" /> type. /// </param> /// <param name="callback2"> /// A <see cref="Delegate" /> object instance that helps implement the /// function to be bound. For aggregate functions, this corresponds to the /// <see cref="SQLiteFinalDelegate" /> type. For other callback types, it /// is not used and must be null. /// </param> public void BindFunction( SQLiteFunctionAttribute functionAttribute, Delegate callback1, Delegate callback2 ) { |
︙ | ︙ |