I am getting started with SubSonic. I wanted to change my db to sqlite and i have this in my config file
<connectionStrings>
<add name="NorthwindSQLite"
connectionString="Data Source=C:\unzipped\WindowsFormsApplication1\my.db"
providerName="System.Data.SQLite"/>
</connectionStrings>
I get the exception
A first chance exception of type 'System.ArgumentException' occurred in System.Data.dll
Additional information: Unable to find the requested .Net Framework Data Provider. It may not be installed.
I have the SQLite Reference in the reference section. So how do i correct this problem?