Connect to sqlite db in isolated storage
Connect to sqlite db in isolated storage
Do you have any examples of how using LinqConnect Silverlight to connect to a sqlite database located in isolated storage?
Re: Connect to sqlite db in isolated storage
To connect to a sqlite database that is located in isolated storage, please use the following code:
where path\to\database is a relative path to the file within isolated storage.
Some documentation regarding this topic is available here http://www.devart.com/linqconnect/silve ... nnect.html
Please tell us if this helps.
Code: Select all
YourDataContext db = new YourDataContext(@"Data Source=path\to\database");
Some documentation regarding this topic is available here http://www.devart.com/linqconnect/silve ... nnect.html
Please tell us if this helps.