Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Modified to use the new utility type conversion helper(s) in SQLiteBase and SQLiteConvert |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | sourceforge |
Files: | files | file ages | folders |
SHA1: |
6886e6f4fb169be9aa68071fedb70ed7 |
User & Date: | rmsimpson 2005-03-04 21:31:58.000 |
Context
2005-03-04
| ||
21:32 | Latest build check-in: 972b7cde17 user: rmsimpson tags: sourceforge | |
21:31 | Modified to use the new utility type conversion helper(s) in SQLiteBase and SQLiteConvert check-in: 6886e6f4fb user: rmsimpson tags: sourceforge | |
21:30 | Increased performance ExecuteScalar() and ExecuteNonQuery() resulting in a nice boost in the insert 100k rows tests and user-function tests check-in: 5f06409677 user: rmsimpson tags: sourceforge | |
Changes
Changes to System.Data.SQLite/SQLiteDataReader.cs.
︙ | |||
8 9 10 11 12 13 14 | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | - - - - - - | namespace System.Data.SQLite { using System; using System.Data; using System.Data.Common; using System.Collections.Generic; |
︙ | |||
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | + + + - - - + + + | private CommandBehavior _commandBehavior; internal SQLiteDataReader(SQLiteCommand cmd, CommandBehavior behave) { _command = cmd; _commandBehavior = behave; Initialize(); if (_command != null) NextResult(); } internal void Initialize() { _activeStatementIndex = -1; _activeStatement = null; _rowsAffected = -1; _fieldCount = -1; |
︙ | |||
311 312 313 314 315 316 317 | 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 | - + - - - - - - - - - - - - - - - - - | /// <summary> /// /// </summary> /// <param name="ordinal"></param> /// <returns></returns> public override Type GetFieldType(int ordinal) { |
︙ | |||
583 584 585 586 587 588 589 | 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 | - - + - - + - - - - + - - - - | /// <summary> /// /// </summary> /// <param name="ordinal"></param> /// <returns></returns> public override object GetValue(int ordinal) { |
︙ |