Skip to content

changpengdiao/mysql-helper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

mysql_helper

Make mysql to struct simple with macro

Example

Create a strcut which the feilds same with mysql-table feilds

use mysql_helper::ModelHelper;
use std::ops::Index;
#[derive(ModelHelper)]
struct CustomStrcut{
    pub c_id : Option<i64>,
    pub c_name : Option<String>,
}

Conn is mysql connection,Create connection,see mysql. ModelHelper will helper you create 'mysql_to_vo' method

let v:Vec<CustomStrcut> = conn.query_map("select * from xxx",|row:Row|CustomStrcut::mysql_to_vo(row));

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages