Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Enhance the comments for the SQLiteModuleNoop class. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
bf02fc9d806e306cd12cb1153bad0175 |
User & Date: | mistachkin 2013-07-06 00:16:03.544 |
Context
2013-07-09
| ||
01:00 | Final updates for release 1.0.87.0. check-in: bc2b80a373 user: mistachkin tags: trunk, release, release-1.0.87.0 | |
2013-07-06
| ||
00:16 | Enhance the comments for the SQLiteModuleNoop class. check-in: bf02fc9d80 user: mistachkin tags: trunk | |
2013-07-05
| ||
22:44 | Also move the static SQLiteIndex marshalling methods into the SQLiteIndex class itself. check-in: 82d24cdca3 user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/SQLiteModuleNoop.cs.
1 2 3 4 5 6 7 8 9 10 11 12 | /******************************************************** * ADO.NET 2.0 Data Provider for SQLite Version 3.X * Written by Joe Mistachkin (joe@mistachkin.com) * * Released to the public domain, use at your own risk! ********************************************************/ using System.Collections.Generic; namespace System.Data.SQLite { /// <summary> | | > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | /******************************************************** * ADO.NET 2.0 Data Provider for SQLite Version 3.X * Written by Joe Mistachkin (joe@mistachkin.com) * * Released to the public domain, use at your own risk! ********************************************************/ using System.Collections.Generic; namespace System.Data.SQLite { /// <summary> /// This class implements a virtual table module that does nothing by /// providing "empty" implementations for all of the /// <see cref="ISQLiteManagedModule" /> interface methods. The result /// codes returned by these "empty" method implementations may be /// controlled on a per-method basis by using and/or overriding the /// <see cref="GetDefaultResultCode" />, /// <see cref="ResultCodeToEofResult" />, /// <see cref="ResultCodeToFindFunctionResult" />, /// <see cref="GetMethodResultCode" />, and /// <see cref="SetMethodResultCode" /> methods from within derived classes. /// </summary> public class SQLiteModuleNoop : SQLiteModule /* NOT SEALED */ { #region Private Data /// <summary> /// This field is used to store the <see cref="SQLiteErrorCode" /> /// values to return, on a per-method basis, for all methods that are |
︙ | ︙ |