miniorm 0.0.10
A minimalistic ORM for SQLite
To use this package, run the following command in your project's root directory:
Manual usage
Put the following dependency into your project's dependences section:
Mini ORM for SQLite3
This is a simple ORM layer for d2sqlite3.
The architecture separate the database from the SQL tree construction. This is to make it possible to use as an ORM layer for other type of databases in the future.
Example
Very simple ORM with single backend (SQLite3).
auto db = Miniorm("test.db");
db.run(schema);
db.run(delete_!Foo.where("ts <", Clock.currTime));
db.run(insert!Foo, Foo(0, "hello", Clock.currTime), Foo(20, "world", Clock.currTime));
db.run(insert!Foo, Foo(0, "hello", Clock.currTime), Foo(0, "world", Clock.currTime));
import std.random : uniform;
db.run(insert!Bar, Bar(0, uniform(0, 10), Baz("one", 3.14)));
db.run(insertOrReplace!Foo, Foo(1, "hello", Clock.currTime), Foo(3, "world", Clock.currTime));
Credit
Oleg Butko (deviator) for writing and publishing MicroORM which MiniORM is based on. Without MicroORM this library would not have seen the light of day.
- Registered by Joakim Brännström
- 0.0.10 released 9 months ago
- joakim-brannstrom/miniorm
- MIT
- Copyright © 2019, Joakim Brännström
- Authors:
- Dependencies:
- d2sqlite3, unit-threaded
- Versions:
-
0.0.10 2024-Feb-22 0.0.9 2023-Oct-18 0.0.7 2023-Feb-12 0.0.6 2022-May-30 0.0.5 2021-Sep-07 - Download Stats:
-
-
0 downloads today
-
0 downloads this week
-
0 downloads this month
-
276 downloads total
-
- Score:
- 0.8
- Short URL:
- miniorm.dub.pm