On Wednesday, 17 January 2018 at 13:36:26 UTC, Marc wrote:
I was looking for a library to use SQLite with D, found this
(https://code.dlang.org/packages/sqlite-d) but it has no
documentation or code example. I looked into files in the
source code and wrote this:
Database db = Database(name);
auto table = db.table(tableName);
auto rows = table.findRows!(format!"(id,date) => id == %s"(id));
(i'm aware of sql injection above)
but it doesnt work, it seems the library has changed. If happen
to that library author see this, would be very helpful.
Also have a look at https://github.com/biozic/d2sqlite3
(documentation: http://biozic.github.io/d2sqlite3/d2sqlite3.html).