Bo Gusman wrote: > > 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'." >
What method is it trying to call at that point? Also, that is NOT the correct public key token for the assembly. The correct one is "db937bc2d44ff139". > > Can anyone provide guidance? > There are a couple things to double check: 1. Make sure that you are using the .NET Compact Framework build of System.Data.SQLite corresponding to the version actually installed on the target device (e.g. 2.0, 3.5, or 3.9). 2. Make sure that the application has been compiled (or recompiled) while referencing the correct version of the System.Data.SQLite managed assembly. 3. Make sure the public key token in use matches the one expected by the application (see above). -- Joe Mistachkin _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

