I'm getting started with SubSonic. I wanted to change my db to sqlite and I have this in my configuration file
<connectionStrings>
<add name="NorthwindSQLite"
connectionString="Data Source=C:\unzipped\WindowsFormsApplication1\my.db"
providerName="System.Data.SQLite"/>
</connectionStrings>
I get an 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 an SQLite link in the link section. So how do I fix this problem?
user34537
source
share