System.Data.SQLite

Check-in [df0aff485f]
Login

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

Overview
Comment:Was not meant to be committed in the first place, superceded by SQLiteStatement
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | sourceforge
Files: files | file ages | folders
SHA1: df0aff485fcaebf419a401a909bc39db0d2dcb6f
User & Date: rmsimpson 2005-03-09 22:57:28.000
Context
2005-03-11
15:03
3.14 code merge check-in: 1eef5ec724 user: rmsimpson tags: sourceforge
2005-03-09
22:57
Was not meant to be committed in the first place, superceded by SQLiteStatement check-in: df0aff485f user: rmsimpson tags: sourceforge
22:44
Recompiled check-in: 7578557648 user: rmsimpson tags: sourceforge
Changes
Unified Diff Ignore Whitespace Patch
Deleted System.Data.SQLite/SQLiteCommandBase.cs.
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
using System;

namespace System.Data.SQLite
{
  internal sealed class SQLiteCommandBase : IDisposable
  {
    internal SQLiteBase _sqlbase;
    internal string     _strCommand;
    internal int        _sqlite_stmt;

    internal SQLiteCommandBase(SQLiteBase sqlbase, int stmt, string strCommand)
    {
      _sqlbase     = sqlbase;
      _sqlite_stmt = stmt;
      _strCommand  = strCommand;
    }

    #region IDisposable Members

    public void Dispose()
    {
      _sqlbase.Finalize(this);
    }

    #endregion
  }
}
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<