SQLite: Cannot open network file programmatically, even though worked before
问题 I have used the code below to open a SQLite database file that sits on a network computer for more than a year now almost on a daily basis. Suddenly this morning, I am not able to open the file programmatically. private Boolean Connect(String strPathFile) { // Initialize the connection object. this.DbConnection = null; try { // DATABASE: Create the connection string and set the settings. String strConnection = @"Data Source=" + strPathFile + @";Version=3;"; // DATABASE: Connect to the