Chris Sonon wrote: > > I have an issue that I was hoping someone could provide a cleaver workaround > for. I am forced, not by my hand, but by a software I am programming to. The > software requires that the libraries be loaded all in the same folder location. > This presents problems when I run into a mixed environment of 64 and 32 bit > machines. I am programing in c#. > Have you looked at the native library pre-loading feature?
In summary, it attempts to automatically detect the processor architecture of the current process and then load the appropriate DLL from a processor architecture specific sub-directory of the application directory. It is documented here: http://system.data.sqlite.org/index.html/artifact?ci=trunk&filename=Doc/Extr a/environment.html And the general usage is described here: http://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki -- Joe Mistachkin _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

