System.Data.SQLite

Check-in [f01efa4daa]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Also update error message wording.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | virtualTables
Files: files | file ages | folders
SHA1: f01efa4daa830cda59f19e9c166daa21537d364c
User & Date: mistachkin 2013-06-22 20:05:43.440
Context
2013-06-24
22:49
The SQLiteValue and SQLiteContext classes should implement the ISQLiteNativeHandle interface. Work in progress on documentation for the virtual tables support classes. check-in: c8d209d5f4 user: mistachkin tags: virtualTables
2013-06-22
20:05
Also update error message wording. check-in: f01efa4daa user: mistachkin tags: virtualTables
20:04
Modify virtual methods for index estimated cost handling. check-in: c1d2964281 user: mistachkin tags: virtualTables
Changes
Unified Diff Ignore Whitespace Patch
Changes to System.Data.SQLite/SQLiteModuleEnumerable.cs.
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
            SQLiteIndex index
            )
        {
            CheckDisposed();

            if (!SetEstimatedCost(index))
            {
                SetTableError(table, "failed to set default estimated cost");
                return SQLiteErrorCode.Error;
            }

            return SQLiteErrorCode.Ok;
        }

        ///////////////////////////////////////////////////////////////////////







|







233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
            SQLiteIndex index
            )
        {
            CheckDisposed();

            if (!SetEstimatedCost(index))
            {
                SetTableError(table, "failed to set estimated cost");
                return SQLiteErrorCode.Error;
            }

            return SQLiteErrorCode.Ok;
        }

        ///////////////////////////////////////////////////////////////////////