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#):
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...