miniorm 0.0.1

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));

See example/source/app.d

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.

Authors:
  • Joakim Brännström
Dependencies:
d2sqlite3, unit-threaded, sumtype
Versions:
0.0.7 2023-Feb-12
0.0.6 2022-May-30
0.0.5 2021-Sep-07
0.0.4 2020-May-19
0.0.3 2019-Sep-28
Show all 9 versions
Download Stats:
  • 0 downloads today

  • 7 downloads this week

  • 10 downloads this month

  • 209 downloads total

Score:
1.4
Short URL:
miniorm.dub.pm