user34537
user34537

Reputation:

sqlite, mono, C# cross platform

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?

Upvotes: 4

Views: 5340

Answers (3)

Stewart
Stewart

Reputation: 4260

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.

Upvotes: 3

Kris Erickson
Kris Erickson

Reputation: 33854

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

Upvotes: 1

AngryHacker
AngryHacker

Reputation: 61656

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

Upvotes: 1

Related Questions