NHibernate driver for the System.Data.SQLite data provider for .NET 2.0.

Namespace:  NHibernate.Driver
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public Class SQLite20Driver _
	Inherits ReflectionBasedDriver
C#
public class SQLite20Driver : ReflectionBasedDriver
Visual C++
public ref class SQLite20Driver : public ReflectionBasedDriver
JavaScript
NHibernate.Driver.SQLite20Driver = function();

Type.createClass(
	'NHibernate.Driver.SQLite20Driver',
	NHibernate.Driver.ReflectionBasedDriver);

Remarks

In order to use this driver you must have the System.Data.SQLite.dll assembly available for NHibernate to load. This assembly includes the SQLite.dll or SQLite3.dll libraries.

You can get the System.Data.SQLite.dll assembly from http://sourceforge.net/projects/sqlite-dotnet2.

Please check http://www.sqlite.org/ for more information regarding SQLite.

Inheritance Hierarchy

See Also