SQLite is a software library that implements a
self-contained,
serverless,
zero-configuration,
transactional
SQL database engine.
SQLite is the
most widely deployed
SQL database engine in the world.
The source code for SQLite is in the
public domain.
HostBuddy.com supports ASP.NET + SQLite. To use SQLite, please make sure you do the following:
1) You must specify the following in your Web.config
<
system.data
>
<
DbProviderFactories
>
<
remove
invariant
=
"System.Data.SQLite"
/>
<
add
name
=
"SQLite Data Provider"
invariant
=
"System.Data.SQLite"
description
=
".Net Framework Data Provider for SQLite"
type
=
"System.Data.SQLite.SQLiteFactory, System.Data.SQLite, Version=1.0.57.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139"
/>
</
DbProviderFactories
>
</
system.data
>
2) Upload your SQLite dll files to your Bin Directory:
System.Data.SQLite.DLL
System.Data.SQLite.Linq.dll
System.Data.SQLite Download Link:
http://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki
Article ID: 250, Created: October 23, 2012 at 8:44 PM, Modified: October 23, 2012 at 8:44 PM