Hi Keith, On Tue, Aug 21, 2012 at 9:52 PM, KeithBoynton < [email protected]> wrote: > > > Is it possible for me to use either System.Data.SQLite (or > Mono.Data.SQLiteClient) on all platforms and simply swap out the dependent > sqlite dll in each package? Or am I forced to recompile my application core > DLL in each environment? >
You could do some tricks do achieve that, but before going there, you may want to check if csharp-sqlite (code.google.com/p/*csharp*-*sqlite*/) is not what you want. Basically it's a native C# port of the sqlite source code, so you have 1 managed DLL usable on several platforms. I'm using it in my project and am very happy with it (except in a few corner cases where I have a table containing > 1 million rows). > > > -- > View this message in context: > http://mono.1490590.n4.nabble.com/Single-dll-targeted-at-multi-platform-but-using-sqlite-possible-tp4656335.html > Sent from the Mono - General mailing list archive at Nabble.com. > _______________________________________________ > Mono-list maillist - [email protected] > http://lists.ximian.com/mailman/listinfo/mono-list >
_______________________________________________ Mono-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-list
