0
comment
comment
on 12/14/2013 11:29 AM
The SqlProvider now supports experimental SQLite access.
You can achieve this by supplying the SQL provider some additional static parameters
type sql = SqlDataProvider< @"Data Source=F:\sqlite\northwindEF.db;Version=3",Common.DatabaseProviderTypes.SQLITE,@"F:\sqlite\3\" >
As you can see, you can now pass SQLITE as the DatabaseVendor static parameter, along with a valid SQLite specific connection string.
The third parameter is ResolutionPath. This is required for a few reasons - the first is that I do not[...]