Please do not reply to this email- if you want to comment on the bug, go to the URL shown below and enter your comments there.
Changed by [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=76494 --- shadow/76494 2005-10-25 20:50:30.000000000 -0400 +++ shadow/76494.tmp.21295 2005-10-26 09:12:58.000000000 -0400 @@ -205,6 +205,27 @@ So, it is obvious that I need to spend more time with the sqlite test suite and update the tests to detect these things. Also, this code should be tested under sqlite2. Apologies for any departures from mono best practices. I am sort of in a crunch right now. :) + +------- Additional Comments From [EMAIL PROTECTED] 2005-10-26 09:12 ------- +Hi TekHead! +To use both sqlite versions you just need libsqlite.so.0 and +libsqlite3.so.0 linked to the precompiled binaries from www.sqlite.org. +I dont know the exact search order of the runtime, but it finds the +libs if you place your symlinks in your installation prefix (gentoo +default is + /usr/lib as far as I know). +I am using gentoo with mono from svn and the sqlite binaries from the +homepage. (I am not using the gentoo sqlite ebuild) + +- Download from http://www.sqlite.org/download.html (sqlite-2.* and +sqlite-3.*) +- Symlink both (example: +For Sqlite3 current: +ln -s /usr/lib/sqlite-3.2.7.so /usr/lib/libsqlite3.so.0 +For current Sqlite2: +ln -s /usr/lib/sqlite-2.8.16.so /usr/lib/libsqlite.so.0 +) +- Now you can switch version in the Connection String. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
