I am using sqlite in my C# project. MoMA complains about the DLLs and i am unsure what to do on the mac/linux side. What are things i generally need to do when porting external DLLs?

link|improve this question

74% accept rate
What exactly is MoMA complaining about. As far as I know SQLite is supported by using the Mono.Data.SqliteClient namespace. – Dale Ragan Apr 12 '09 at 1:30
@DaleRagan That old lib has been all but replaced by Mono.Data.Sqlite now – IanNorton Nov 22 '11 at 6:50
feedback

3 Answers

up vote 2 down vote accepted

You could use the SQLite assembly that's shipped with Mono - it's derived from the one you are probably using now.

See http://mono-project.com/SQLite for more details

link|improve this answer
That looks right, i'll look into it monday or tuesday and mark this accepted or not :) – acidzombie24 Apr 12 '09 at 3:31
@acidzombie24 - and? – Stewart Jun 25 '10 at 14:25
feedback

You might want to look at the C# reimplementation of SQLite on googlecode. This started life as a line-by-line port of the C++ SQLite but after lots of improvements now outperforms the original for many types of operation.

link|improve this answer
It says its 5x slower... – acidzombie24 Jul 14 '10 at 15:54
@acidzombie24 - the original was about 5x slower, typically. The latest version is much faster than that as shown in the benchmarks at code.google.com/p/csharp-sqlite/wiki/Benchmarks – Stewart Jul 22 '10 at 10:55
@Stewart: You do know that bigger values are worse? as its time and you want the shortest time. Interesting, it looks like some of these values are shorter then SQLite. Very interesting. It looks like most of these values are larger and SQLite is still the fastest on inserting. I wonder what stats i should look at for updates. But, both are pretty fast so it doesnt matter. – acidzombie24 Jul 22 '10 at 19:58
2  
@acidzombie24 - LOL - I didn't say SQLite was faster overall. I was originally just pointing out that for many (not all) operations it was faster. In my comment, I was merely pointing out that it was now better than "about 5x slower". – Stewart Jul 23 '10 at 10:25
1  
oh, gotcha, ok +1. – acidzombie24 Jul 23 '10 at 20:59
show 3 more comments
feedback

PHXSoftware's System.Data.Sqlite runs on Mono.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.