I have been working with SQLite on a WIndows CE project using System.Data.Sqlite (1.0.87) for about 8 months now. It has worked very well until recently. Early this week, I returned to the project to make some changes to the GUI, totally unrelated to the database and began receiving "MissingMethodException" when I attempted to connect to the database.

To further isolate the issue, I created a simple test program with nothing but a form and a single button that attempted to connect to the db. The following stack trace shows the error being thrown on the call to conn.Open()

System.MissingMethodException was unhandled
Message="Could not load type 'System.Data.SQLite.SQLiteConnection' from assembly 'System.Data.SQLite, Version=1.0.90.0, Culture=neutral, PublicKeyToken=1FDB50B1B62B4C84'."
  StackTrace:
    at System.Windows.Forms.Control.OnClick()
    at System.Windows.Forms.Button.OnClick()
    at System.Windows.Forms.ButtonBase.WnProc()
    at System.Windows.Forms.Control._InternalWnProc()
    at Microsoft.AGL.Forms.EVL.EnterMainLoop()
    at System.Windows.Forms.Application.Run()
    at test_sqlite_ce_2_take_2.Program.Main()
  InnerException:

I have upgraded to version 1.0.90 and have even built my own version of System.Data.Sqlite and the corresponding Interop dll, with no change in behavior.

This is an absolute show stopper for me and my client and I have no idea what is going on, and why, after 8 months of working perfectly is it now failing.

Can anyone provide guidance?

Thanks!

    Bo

_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to