Zig relational mapper.
Find a file
2024-10-17 23:00:35 +02:00
src Fix find with one key when model key is a string. 2024-10-17 23:00:35 +02:00
tests Add generic helper functions for models which have the same table definition. 2024-10-17 19:08:39 +02:00
.gitignore Create ZRM, repositories and its related queries. 2024-10-16 12:01:16 +02:00
build.zig Create ZRM, repositories and its related queries. 2024-10-16 12:01:16 +02:00
build.zig.zon Version 0.1.2 2024-10-17 19:08:46 +02:00
LICENSE Create ZRM, repositories and its related queries. 2024-10-16 12:01:16 +02:00
logo.svg Create ZRM, repositories and its related queries. 2024-10-16 12:01:16 +02:00
README.md Version 0.1.2 2024-10-17 19:08:46 +02:00

ZRM logo

ZRM

Documentation | API

Zig relational mapper

ZRM is part of zedd, a collection of useful libraries for zig.

ZRM

ZRM provides a simple interface to relational databases in Zig. Define your repositories and easily write queries to retrieve and save complex Zig structures.

Versions

ZRM 0.1.2 is made and tested with zig 0.13.0.

Work in progress

ZRM aims to handle a lot for you, but it takes time to make. Have a look to the issues to see what is currently planned or being worked on.

How to use

Install

In your project directory:

$ zig fetch --save https://code.zeptotech.net/zedd/zrm/archive/v0.1.2.tar.gz

In build.zig:

// Add zrm dependency.
const zrm = b.dependency("zrm", .{
	.target = target,
	.optimize = optimize,
});
exe.root_module.addImport("zrm", zrm.module("zrm"));

Examples

Full examples can be found in tests directory: