我尝试连接到SQLite数据库,但无法识别连接字符串并给出了此错误。这个数据库文件在我的项目文件夹中与其他文件一起使用,对于复制选项,我有" copy always"在调试文件夹中。错误是这样的:
"有效参数:数据源= ..."
代码是:
SQLiteConnection con = new SQLiteConnection("Data Source=db.sqlite;version=3;");
可能出现什么问题?
答案 0 :(得分:0)
SQLiteConnection con = new SQLiteConnection("Data Source=" + System.Windows.Forms.Application.StartupPath + "\\db.sqlite;Version=3;");
指定驱动器中数据库的位置。