各位高手好,我在VS2008使用System.Data.SQLite
static string SQLITE_DB = "C:\\Tables\\Table.db";
if (!File.Exists(SQLITE_DB))
SQLiteConnection.CreateFile(SQLITE_DB);
sqlite_connect = new SQLiteConnection("Data source=" + SQLITE_DB);
sqlite_connect.Open();
在open阶段程式就出错了