Unable to open database.
public static DataTable veriAl(string sqliteKomut) { DataTable dt = new DataTable(); using (SQLiteConnection sqlCon = new SQLiteConnection("Data Source=" + Application.StartupPath + "\\Veri\\tkt.db;Version=3;New=False;Compress=True;UTF8Encoding=True;DateTimeFormat=CurrentCulture")) { sqlCon.Open(); sqlDa = new SQLiteDataAdapter(sqliteKomut, sqlCon); } sqlDa.Fill(dt); return dt; }
SQLiteConnection sqlCon = new SQLiteConnection("Data Source=" + Application.StartupPath + "\\Veri\\tkt.db;Version=3;New=False;Compress=True;UTF8Encoding=True;DateTimeFormat=CurrentCulture"); public static DataTable veriAl(string sqliteKomut) { DataTable dt = new DataTable(); sqlCon.Open(); sqlDa = new SQLiteDataAdapter(sqliteKomut, sqlCon); sqlCon.Close(); sqlDa.Fill(dt); return dt; }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)