Diesel Ease

A proc macro that will generate some useful of functions for database operations that uses diesel.

This crate is for those who are using diesel for database operations and want to have less boilerplate code.

This crate will generate functions based on your struct and fields of that struct.

You can open your crate's docs to see the generated functions. Run cargo doc --open to see the docs.

Installation

toml [dependencies] diesel_ease = "0.1"

Usage

Lets assume you have two structs named User and NewUser in your src/models.rs file:

```rust

[derive(Insertable)]

[table_name = "users"]

pub struct NewUser { pub name: String, }

[diesel_ease(PgConnection)] // here we used the macro

[derive(Queryable, Clone, Debug, PartialEq)]

pub struct User { pub id: i32, pub name: String, } ```

Lets also assume that you have table named users in your database and also in your src/schema.rs file:

rust table! { users (id) { id -> Int4, name -> Varchar, } }

Now you will get these associated functions by using diesel_ease proc macro:

NOTE: How many functions will you get and which functions will you get is based on your struct

You can use these methods like so:

```rust // connection to your database let connection = establish_connection();

// get the names of the User whose id is 18 let name: String = User::getnamesby_id(&connection, 18).unwrap()[0].clone();

// update the name of the user whose id is 18 let updatedname: String = User::updatenamesbyid(&connection, 18, format!("{}-2", name)) .unwrap() .name;

assertne!(name, updatedname);

// delete the user whose id is 18 User::deletebyid(&connection, 18).unwrap();

// Now again get the names of the User whose id is 18 let name: Vec = User::getnamesby_id(&connection, 18).unwrap();

assert_eq!(name.len(), 0);

// insert a new user let newuser = NewUser { name: "Mostofa".tostring(), };

let inserteduser: User = User::insert(&connection, newuser).unwrap();

asserteq!(&inserteduser.name, "Mostofa"); ```

Some important notes