Elephantry

Crates.io docs.rs Github actions pipeline status

When Rust meets PostgreSQL.

Getting Started

See quickstart and examples.

Quick overview

Elephantry is an OMM (object model manager) dedicated to PostgreSQL design to handle from simple to complex queries.

```rust let databaseurl = std::env::var("DATABASEURL") .unwraporelse(|| "postgres://localhost".tostring());

// Connect let elephantry = elephantry::Pool::new(&database_url)?;

// Simple query let rows = elephantry.execute("select id from entity")?;

for row in &rows { let id: i32 = row.get("id"); println!("{id}"); }

// Define entity

[derive(elephantry::Entity)]

[elephantry(model = "Model", structure = "Structure")]

struct Entity { #[elephantry(pk)] id: u16, deleted: bool, }

// Read entities let entity = elephantry.findbypk::(&elephantry::pk!(id))?; let entities = elephantry.findall::(None)?; let entities = elephantry.findwhere::("deleted = $1", &[&false], None)?;

// Write entities elephantry.insertone::(&entity)?; elephantry.updateone::(&elephantry::pk!{id => entity.id}, &entity)?; elephantry.deleteone::(&entity)?; elephantry.deletewhere::("deleted = $1", &[&true])?; ```

Features

Types

Projects using Elephantry

If you want to add your project here, please create a pull request.