我想用C#打开SQLite DB文件。
我从Visual Basic源代码重写了这段代码。
SqlConnection myConnection = new SqlConnection();
myConnection.ConnectionString = "Data Source=C:\\web.db;";
myConnection.Open();
但是我无法在C#控制台应用程序中打开本地计算机上的“web.db”文件。
答案 0 :(得分:3)
您需要SQLite ADO.NET driver for .NET或类似内容。
答案 1 :(得分:0)
您可以在Visual Studio中使用NuGet来安装由SQLite开发团队创建的官方System.Data.SQLite驱动程序。