Giter Club home page Giter Club logo

rusqlite-model's Introduction

rusqlite-model

Crates.io docs.rs

For when serialising/deserialising a struct into/from your (rusqlite) database queries would be convenient, but you don't need all of diesel.

Usage

[dependencies]
rusqlite-model = "0.1"
use rusqlite_model::Model;

#[derive(Model)]
struct User {
    name: String,
    email: String,
    is_active: bool,
    #[sql_type(DATE)]
    last_login: String,
}

fn ensure_exactly_one_user(conn: &rusqlite::Connection) -> rusqlite::Result<usize> {
    User::drop_table(&conn)?;
    User::create_table(&conn)?;

    User {
        name: "OJFord".into(),
        email: "[email protected]".into(),
        is_active: true,
        last_login: "2021/02/28".into(),
    }
    .insert(&conn)
}

fn get_active_users(conn: &rusqlite::Connection) -> rusqlite::Result<Vec<User>> {
    let mut stmt = conn.prepare("SELECT * FROM users WHERE is_active = ?")?;
    stmt.query_map(params![true], |row| row.try_into::<User>())
}

To do

  • Docs & tests
  • More types (String -> TEXT; bool -> BOOL currently supported, anything else requires explicit #[sql_type(...)])
  • Some kind of ::from_query helper (connection & query string -> maybe model)

Won't do

  • Not intending to be a full ORM with much DSL, use diesel if that's wanted;
  • I like rusqlite's simplicity when only SQLite is needed, this is just intended to reduce boilerplate around inserting (VALUES (?,?,?,?,.. how many ? again?) and parsing results into structs for better ergonomics;
  • Migrations
  • Pan-DBMS portability (rusqlite, and hence SQLite, only)

rusqlite-model's People

Contributors

ojford avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

rusqlite-model's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.