System.Data.SQLite

Check-in [f35dd3aa68]
Login

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

Overview
Comment:Changed Cancel() -- should not throw an error even if not implemented
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | sourceforge
Files: files | file ages | folders
SHA1: f35dd3aa68b7f9a26e575185a8a4dd3d5802f9b1
User & Date: rmsimpson 2005-03-02 15:57:28.000
Context
2005-03-02
15:58
Removed some redundant calls and tweaked NextResult() check-in: b2ece50abc user: rmsimpson tags: sourceforge
15:57
Changed Cancel() -- should not throw an error even if not implemented check-in: f35dd3aa68 user: rmsimpson tags: sourceforge
15:56
Added future support for sqlite3_interrupt check-in: ffba634160 user: rmsimpson tags: sourceforge
Changes
Unified Diff Ignore Whitespace Patch
Changes to System.Data.SQLite/SQLiteCommand.cs.
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
    }

    /// <summary>
    /// Not implemented
    /// </summary>
    public override void Cancel()
    {
      throw new NotImplementedException();
    }

    /// <summary>
    /// The SQL command text associated with the command
    /// </summary>
    public override string CommandText
    {







<







135
136
137
138
139
140
141

142
143
144
145
146
147
148
    }

    /// <summary>
    /// Not implemented
    /// </summary>
    public override void Cancel()
    {

    }

    /// <summary>
    /// The SQL command text associated with the command
    /// </summary>
    public override string CommandText
    {