ADO.NET 2.0 SQLite Data Provider
Version 1.0.6 - Feb 28, 2005
Written by Robert Simpson (robert@blackcastlesoft.com)
Released to the public domain, use at your own risk!

This provider was written and verified using the Visual Studio 2005 November and December CTP's.

The latest version can be downloaded here

Features:
In order to use the SQLiteFactory and have the SQLite data provider enumerated in the DbProviderFactories methods, you must add the following segment into either your application's app.config or the system's machine.config located in the %SystemRoot%\Microsoft.Net\Framework\v2.xxxx\Config folder:

<configuration>
  <system.data>
    <DbProviderFactories>
      <add name="SQLite Data Provider" invariant="System.Data.SQLite" support="3F" description=".Net Framework Data Provider for SQLite" type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite" />
    </DbProviderFactories>
  </system.data>
</configuration>

Development Notes Regarding the SQLite 3 Source Code
*** At this time, the necessary changes to the DLL to support Windows CE have not been completed.  All function calls that return or pass a 64-bit value have been wrapped, but the necessary OS changes have not been finished.

Steps for merging the sqlite3 core codebase:

  1. Download the latest sqlite3 source from http://www.sqlite.org/download.html
  2. Extract the source code to the SQLite.Interop\src directory of this project
  3. Open the src\select.c file.
  4. Add #include "../interop.h" to the top of the file where the other include's are.
  5. Scroll down the select.c file to around line 748.  Change the name of the function static void generateColumnNames to static void _generateColumnNames (note the underscore in front of the name).
  6. Compile it.
Version History
1.06 - Feb 28, 2005

1.05 - Feb 25, 2005

1.04 - Feb 24, 2005
1.03 - Feb 23, 2005

1.02 - Feb 21, 2005