sql >> Database >  >> RDS >> SQLite

SQLite - Kan databasebestand niet openen

Bestaat het padmappad dat u aan SQLite verstrekt? Als u de CanFindLocation . nog niet heeft gemaakt map en het openen van een verbinding met dat pad zal mislukken.

Probeer:

string applicationFolderPath = System.IO.Path.Combine(System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal), "CanFindLocation");

// Create the folder path.
System.IO.Directory.CreateDirectory(applicationFolderPath);

string databaseFileName = System.IO.Path.Combine(applicationFolderPath, "CanFindLocation.db");
SQLite.SQLite3.Config(SQLite.SQLite3.ConfigOption.Serialized);
var db = new SQLiteConnection (databaseFileName);


  1. Een CLOB-kolom opvragen in Oracle

  2. PostgreSQL:parallellisme opvragen in actie

  3. Hoe REPLACE() werkt in MariaDB

  4. Hoe kan ik incompatibel oplossen met sql_mode=only_full_group_by in laravel welsprekend?