Developed a small SQLite server as module for Etilic.

SQLite Admin 1
SQLite Admin 2

The screenshots show an EASP application, which uses the SQLite server, running on the latest Etilic version.

The API is quite simple to use (in C#):
 Code:
SqliteConnection connection = new SqliteConnection("127.0.0.1", 3306, "user", "password");
connection.SelectDatabase("db");

XmlDocument result = connection.ExecuteQuery("SELECT * FROM table");

// have fun with the result...


Last edited by MichaelFriedrich; 05/07/08 21:33. Reason: wrong link

Your friendly mod is at your service.