SQLite on C# Cross-Platform Applications
.net, c#, mono, orm, sqlite
Solution
You can use csharp-sqlite which is a port to C# of Sql-Lite. It is very active and based on 3.6.22 version of SqlLite. See Miguel's comments on attempts to try to speed it up.
Problem
Can someone help/guide me with using SQLite lib on Linux (MONO) and Windows (.NET) On linux i use native mono sqlite client, and on windows i use http://sqlite.phxsoftware.com/ is there a way to define 'using' directives like this : ``` #if (linux) using Mono.Data.Sqlite; #else using System.Data.SQLite; ``` Another problem is small differencies on both implementations, like : ``` cmd = new SqliteCommand(); // mono cmd = new SQLiteCommand(); // sqlite.phxsoftware.com ``` Waiting for any help If you know better or simplier way to do this it'll very thankfull for info. Thanks