I am trying to create a new SQLiteConnection which connects to a database on a network drive. Here is some sample code:
scn =
new SQLiteConnection("Data Source ='" + databasePath + "'");
scn.Open();
The databasePath is L:\Priv\developer\virtualbeach\csc_data\beachmanager.db. When I call the Open method, I get a NotSupportedException. The exception message is 'The given path's format is not supported.'
Is anyone else having this problem? The database connects just fine if I specify the database without the drive letter.
Thanks in advance for advice / help.
-Ben