这里是另一个您必须观看的有用视频教程:System.Data.Sqlite希望这会有所帮助.Hi i have a file called test.sqlite. How do i go about reading all contents from this file to the console? I already have System.Data.Sqlitestatic void Main(string[] args) { SQLiteConnection _SQL = new SQLiteConnection("Data Source=C:\\test.sqlite"); _SQL.Open(); SQLiteCommand cmd = new SQLiteCommand(); } 解决方案 To use SQLite in your C# application, you need to download a third party free ADO.NET data provider SQLite.NET.0.21_x68_dll.You can download it from here: Sql Lite Driver for C#and here is another usefull video tutorial which you must watch: System.Data.SqliteHope this helps. 这篇关于用 C# 打开 .sqlite 文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
09-01 23:00