我想使用System.Data.SQLite與wpf應用程序。 所以我下載了文件here並添加了對System.Data.SQLite下載的引用。SQLite.Interop.DLL如何使用非託管DLL
然後我寫的代碼
SQLiteConnection connex = new SQLiteConnection(@"Data Source=C:\Users\Toto\Desktop\Test.sqlite;");
connex.Open();
DataTable dt = new DataTable();
SQLiteCommand command = connex.CreateCommand();
command.CommandText = "SELECT * FROM TEST";
SQLiteDataAdapter da = new SQLiteDataAdapter();
da.SelectCommand = command;
da.Fill(dt);
connex.Close();
,但它不能正常工作。當我試圖打開了連接,它說,它是不可能找到SQLite.Interop.dll ..沒問題我有這個,但不可能添加引用它,因爲它是一個非託管DLL。
因此,如果有人來使用SQLite和ADO.NET我在尋找建議..
非常感謝
你應該關閉你的連接使用'使用'語句 – SLaks
我知道這只是爲了測試.. – bAN