Chris Sonon wrote: > > I cannot do this as there is no "project library". Essentially I select some > libraries and they get "loaded" into the software that I am programming to. > So basically everything needs to sit in one repository. >
The native library pre-loading feature handles pre-loading of the SQLite interop assembly itself. I'm not sure what you mean by "project library" in this context. There are two libraries (or pieces) necessary to use System.Data.SQLite: 1. The managed components, which are always contained in System.Data.SQLite.dll. 2. The native components, which in this case are contained in SQLite.Interop.dll. This DLL can be pre-loaded automatically by the native library pre-loading feature present in the System.Data.SQLite.dll as long as it resides in an "x86" or "x64" sub-directory of the directory where the System.Data.SQLite.dll file is located, which is typically the application directory. -- Joe Mistachkin _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

