Re: [sqlite] xcopy deployment using System.Data.SQLite for Windows x86, x64, and Mono/Unix?

2012-03-13 Thread Joe Mistachkin
Andrew Rondeau wrote: > > Hmmm, part of the point of Mono is that a pure CLR .dll or .exe can work on > any platform without recompilation. > The standard build of System.Data.SQLite looks for a native assembly (DLL) named "SQLite.Interop.dll" and this has always been the case. It is possible

Re: [sqlite] xcopy deployment using System.Data.SQLite for Windows x86, x64, and Mono/Unix?

2012-03-13 Thread Andrew Rondeau
Hmmm, part of the point of Mono is that a pure CLR .dll or .exe can work on any platform without recompilation. How can I have a System.Data.SQLite that will work on Windows x86, x64, and the various Unixes without recompiling System.Data.SQLite? PHX's older version of System.Data.SQLite does this

Re: [sqlite] xcopy deployment using System.Data.SQLite for Windows x86, x64, and Mono/Unix?

2012-03-08 Thread Joe Mistachkin
Andrew Rondeau wrote: > > Are there any versions of System.Data.SQLite.dll that I can download that > will work on both x86 and x64 Windows; AND Mac/Linux via Mono? > Mono is supported. However, there is no pre-compiled binary package for it. See the following for more information: http

[sqlite] xcopy deployment using System.Data.SQLite for Windows x86, x64, and Mono/Unix?

2012-03-08 Thread Andrew Rondeau
I currently have a project that I developed in C# using SQLite. The project deploys successfully to Windows, Mac, and Ubuntu Linux via XCopy deployment. At the moment, I use an older System.Data.SQLite.dll from PHX, and a sqlite3.dll from sqlite.net. These I downloaded in early 2009, and have been