C# Open SQLite file

前端 未结 2 1323
醉酒成梦
醉酒成梦 2021-01-23 21:45

i would like to open SQLite DB file in C#.

I have this code rewrited from Visual Basic source code.

SqlConnection myConnection = new SqlConnection();
myC         


        
相关标签:
2条回答
  • 2021-01-23 22:03

    You can use NuGet in Visual Studio to install the offical System.Data.SQLite drivers created by the SQLite development team.

    0 讨论(0)
  • 2021-01-23 22:06

    You'll need the SQLite ADO.NET driver for .NET or something similar.

    0 讨论(0)
提交回复
热议问题