All the info is in the attached file. Here are a few details. ---- The error is: "Can't load file SQLiteConnection.cs under c:\dev\sqlite\dotnet\System.Data.SQLite." Why is it looking for the ".cs" file? Why does it look for in the indicated folder. -------------- I wonder if I am using the correct DLL: "System.Data.SQLite from this version: "sqlite-netFx40-static-binary-bundle-Win32-2010-1.0.79.0". On the web.
The IDE is: SharpDevelop Version : 4.1.0.8000-736b5b66 .NET Version : 4.0.30319.239 OS Version : Microsoft Windows NT 5.1.2600 Service Pack 3 I'm working under .dotNet Framework V4. The code is essentially below. The GetSchema generates the error. ------- private void MetaDataCollections() { // SQLiteFactory factory=new SQLiteFactory(); using (SQLiteConnection connection = new SQLiteConnection()) { connection.ConnectionString = @"Data Source=I:\001-CurrentWork\SqliteTestDB1.s3db"; connection.Open(); if (connection.State!= ConnectionState.Open) { MessageBox.Show(@"Connection failed"); this.Close(); } DataTable dt = connection.GetSchema(@"MetaDataCollection"); DisplayDataTable(dt,"MetaDataCollections.xls"); } } --------- http://old.nabble.com/file/p33353617/SQLiteDisplay.zip SQLiteDisplay.zip -- View this message in context: http://old.nabble.com/bug--Can%27t-load-file-SQLiteConnection.cs-under-c%3A%5Cdev%5Csqlite%5Cdotnet%5CSystem.Data.SQLite.-tp33353617p33353617.html Sent from the SQLite mailing list archive at Nabble.com. _______________________________________________ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users