``` [profiles] db = "test" // 使用哪个db文件配置 test为db_test.toml
static_resource = "./" // 静态文件路径 可忽略
limit = 100 // 默认分页数量 (没有用)可忽略 ```
```
[mysql]
ip = "127.0.0.1"
port = 3306
username = "root"
password = "yannuo"
db_name = "test"
[redis]
ip = "127.0.0.1"
port = 6379
token_timeout = 86400
timeout = 86400 ```
``` use macrobuilder::CommonDbMacro; use serdederive::{Serialize, Deserialize};
#[derive(Debug, Serialize, Deserialize, CommonDbMacro)]
pub struct User {
pub id: u32,
pub name: String,
pub address: String,
pub phone: u32
}
impl User {
pub fn new(id: u32, name: String, address: String, phone: u32) -> Self {
Self {id, name, address, phone,}
}
}
pub trait DbImpl {
fn get(table_name: &str) -> usize {
let mut conn = db_tool::get_db_conn();
conn.query_first(format!("select count(*) from {}", table_name)).unwrap().unwrap()
}
}
impl DbImpl for User {
}
#[test]
fn test() {
// 获取表数据的数量
let number = User::get_count("table");
println!("number: {}", number);
let number2 = User::get("table");
println!("number2: {}", number2);
// 获取表数据
let user_list = User::batch_select("table", 1, 100);
for item in user_list {
println!("user: {:?}", item);
}
let user = User::new(1, "tester".to_owned(), "earth".to_owned(), 10086);
// 插入
user.insert("table");
// 更新
user.update("table");
// 删除
User::delete("table", 1);
}
```