Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typo in the SQLiteFunction.RegisterFunction method overload that accepts a Type object. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | delegateFunction |
Files: | files | file ages | folders |
SHA1: |
d0a9c28bd5476525ddc62768c5264d69 |
User & Date: | mistachkin 2015-08-17 19:08:38.293 |
Context
2015-08-17
| ||
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 | |
18:53 | Merge updates from trunk. check-in: b1c319c00b user: mistachkin tags: delegateFunction | |
Changes
Changes to System.Data.SQLite/SQLiteFunction.cs.
︙ | ︙ | |||
738 739 740 741 742 743 744 | { SQLiteFunctionAttribute at = arAtt[y] as SQLiteFunctionAttribute; if (at == null) continue; RegisterFunction( | | | 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 | { SQLiteFunctionAttribute at = arAtt[y] as SQLiteFunctionAttribute; if (at == null) continue; RegisterFunction( at.Name, at.Arguments, at.FuncType, typ, at.Callback1, at.Callback2); } } /// <summary> /// Alternative method of registering a function. This method /// does not require the specified type to be annotated with |
︙ | ︙ |