torm 0.3.0

A Tokio-based async ORM for Rust with GORM-like API, supporting SQLite, MySQL and PostgreSQL via native wire protocols
Documentation
1
2
3
4
5
6
7
8
9
10
// 数据库层 - 数据库驱动、连接、存储引擎和 SQL 实现
pub mod db_types;
pub mod database;
pub mod driver;
pub mod error;
pub mod storage;
pub mod sqlite;
pub mod mysql;
pub mod postgresql;
pub mod pool;