Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Apijson | 16,074 | 2 days ago | 236 | other | Java | |||||
🏆 零代码、全功能、强安全 ORM 库 🚀 后端接口和文档零代码,前端(客户端) 定制返回 JSON 的数据和结构。 🏆 A JSON Transmission Protocol and an ORM Library 🚀 provides APIs and Docs without writing any code. | ||||||||||
Drizzle Orm | 15,185 | 98 | a day ago | 449 | November 28, 2023 | 591 | apache-2.0 | TypeScript | ||
TypeScript ORM that feels like writing SQL. | ||||||||||
Sqlc | 9,476 | 18 | a day ago | 144 | November 22, 2023 | 205 | mit | Go | ||
Generate type-safe code from SQL | ||||||||||
Sqlalchemy | 8,050 | 41,853 | 5,897 | a day ago | 294 | November 02, 2023 | 205 | mit | Python | |
The Database Toolkit for Python | ||||||||||
Exposed | 7,581 | 38 | a day ago | 21 | October 26, 2023 | 246 | apache-2.0 | Kotlin | ||
Kotlin SQL Framework | ||||||||||
Objection.js | 7,129 | 707 | 415 | 3 days ago | 204 | November 26, 2023 | 81 | mit | JavaScript | |
An SQL-friendly ORM for Node.js | ||||||||||
Records | 6,956 | 150 | 31 | 8 months ago | 11 | September 02, 2017 | 64 | isc | Python | |
SQL for Humans™ | ||||||||||
Mikro Orm | 6,642 | 184 | a day ago | 2,217 | November 28, 2023 | 50 | mit | TypeScript | ||
TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, MariaDB, PostgreSQL and SQLite databases. | ||||||||||
Sqlboiler | 6,130 | 145 | 3 days ago | 99 | August 18, 2023 | 95 | bsd-3-clause | Go | ||
Generate a Go ORM tailored to your database schema. | ||||||||||
Jooq | 5,732 | 1,175 | 357 | a day ago | 210 | October 10, 2023 | 1,924 | other | Java | |
jOOQ is the best way to write SQL in Java |
It is an ORM, a small compiler, a dynamic SQL languages
#{arg}
, Direct replacement:${arg}
, unify ?
placeholders(support all driver)SQLX, deadpool,mobc, Tiberius, MyBatis, xorm
and so on reference design or code implementation. Release of V4 is Inspired and supported by these frameworks.**rbatis.query_decode::<Vec<i32>>("", vec![]).await;
on benches bench_raw()MockTable::insert(&rbatis,&t).await;
on benches bench_insert()MockTable::select_all(&rbatis).await.unwrap();
on benches bench_select()---- bench_raw stdout ----(windows)
Time: 52.4187ms ,each:524 ns/op
QPS: 1906435 QPS/s
---- bench_insert stdout ----(macos,cpu-M1Max)
Time: 378.186333ms ,each:3781 ns/op
QPS: 264418 QPS/s
---- bench_select stdout ----(macos,cpu-M1Max)
Time: 112.927916ms ,each:1129 ns/op
QPS: 885486 QPS/s
data structure | is supported |
---|---|
Option | |
Vec | |
HashMap | |
i32,i64,f32,f64,bool,String...more rust type | |
rbatis::rbdc::types::{Date,DateTime,Time,Timestamp,Decimal,Json} | |
rbatis::plugin::page::{Page |
|
rbs::Value* | |
serde_json::* | |
any serde type | |
driver type on package (rdbc-mysql/types,rbdc-pg/types,rbdc-sqlite/types) |
platform | is supported |
---|---|
Linux(unbutu laster***) | |
Apple/MacOS(laster) | |
Windows(latest) |
Rust v1.73+ later
Cargo.toml
#rbatis deps
rbs = { version = "4.5"}
rbatis = { version = "4.5"}
rbdc-sqlite = { version = "4.5" }
#rbdc-mysql={version="4.5"}
#rbdc-pg={version="4.5"}
#rbdc-mssql={version="4.5"}
#other deps
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
log = "0.4"
fast_log = "1.6"
rbs = { version = "4.5" }
rbdc-sqlite = { version = "4.5", default-features = false, features = ["tls-native-tls"] }
#rbdc-mysql={version="4.5", default-features = false, features = ["tls-native-tls"]}
#rbdc-pg={version="4.5", default-features = false, features = ["tls-native-tls"]}
#rbdc-mssql={version="4.5", default-features = false, features = ["tls-native-tls"]}
rbatis = { version = "4.5"}
#other deps
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
log = "0.4"
fast_log = "1.6"
//#[macro_use] define in 'root crate' or 'mod.rs' or 'main.rs'
#[macro_use]
extern crate rbatis;
extern crate rbdc;
use rbatis::rbdc::datetime::DateTime;
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct BizActivity {
pub id: Option<String>,
pub name: Option<String>,
pub pc_link: Option<String>,
pub h5_link: Option<String>,
pub pc_banner_img: Option<String>,
pub h5_banner_img: Option<String>,
pub sort: Option<String>,
pub status: Option<i32>,
pub remark: Option<String>,
pub create_time: Option<DateTime>,
pub version: Option<i64>,
pub delete_flag: Option<i32>,
}
crud!(BizActivity{});//crud = insert+select_by_column+update_by_column+delete_by_column
impl_select!(BizActivity{select_all_by_id(id:&str,name:&str) => "`where id = #{id} and name = #{name}`"});
impl_select!(BizActivity{select_by_id(id:String) -> Option => "`where id = #{id} limit 1`"});
impl_update!(BizActivity{update_by_name(name:&str) => "`where id = 1`"});
impl_delete!(BizActivity {delete_by_name(name:&str) => "`where name= '2'`"});
impl_select_page!(BizActivity{select_page(name:&str) => "`where name != #{name}`"});
#[tokio::main]
async fn main() {
/// enable log crate to show sql logs
fast_log::init(fast_log::Config::new().console()).expect("rbatis init fail");
/// initialize rbatis. also you can call rb.clone(). this is an Arc point
let rb = RBatis::new();
/// connect to database
// sqlite
rb.init(SqliteDriver {}, "sqlite://target/sqlite.db").unwrap();
// mysql
// rb.init(MysqlDriver{},"mysql://root:123456@localhost:3306/test").unwrap();
// postgresql
// rb.init(PgDriver{},"postgres://postgres:123456@localhost:5432/postgres").unwrap();
// mssql/sqlserver
// rb.init(MssqlDriver{},"jdbc:sqlserver://localhost:1433;User=SA;Password={TestPass!123456};Database=test").unwrap();
let activity = BizActivity {
id: Some("2".into()),
name: Some("2".into()),
pc_link: Some("2".into()),
h5_link: Some("2".into()),
pc_banner_img: None,
h5_banner_img: None,
sort: None,
status: Some(2),
remark: Some("2".into()),
create_time: Some(DateTime::now()),
version: Some(1),
delete_flag: Some(1),
};
let data = BizActivity::insert(&rb, &activity).await;
println!("insert = {:?}", data);
let data = BizActivity::select_all_by_id(&rb, "1", "1").await;
println!("select_all_by_id = {:?}", data);
let data = BizActivity::select_by_id(&rb, "1".to_string()).await;
println!("select_by_id = {:?}", data);
let data = BizActivity::update_by_column(&rb, &activity, "id").await;
println!("update_by_column = {:?}", data);
let data = BizActivity::update_by_name(&rb, &activity, "test").await;
println!("update_by_name = {:?}", data);
let data = BizActivity::delete_by_column(&rb, "id", &"2".into()).await;
println!("delete_by_column = {:?}", data);
let data = BizActivity::delete_by_name(&rb, "2").await;
println!("delete_by_column = {:?}", data);
let data = BizActivity::select_page(&rb, &PageRequest::new(1, 10), "2").await;
println!("select_page = {:?}", data);
}
///...more usage,see crud.rs
#[tokio::main]
pub async fn main() {
use rbatis::RBatis;
use rbdc_sqlite::driver::SqliteDriver;
#[derive(Clone, Debug, serde::Serialize, serde::Deserialize)]
pub struct BizActivity {
pub id: Option<String>,
pub name: Option<String>,
}
fast_log::init(fast_log::Config::new().console()).expect("rbatis init fail");
let rb = RBatis::new();
rb.init(SqliteDriver {}, "sqlite://target/sqlite.db").unwrap();
let table: Option<BizActivity> = rb
.query_decode("select * from biz_activity limit ?", vec![rbs::to_value!(1)])
.await
.unwrap();
let count: u64 = rb
.query_decode("select count(1) as count from biz_activity", vec![])
.await
.unwrap();
println!(">>>>> table={:?}", table);
println!(">>>>> count={}", count);
}
Because of the compile time, the annotations need to declare the database type to be used.
#[py_sql("select * from biz_activity where delete_flag = 0
if name != '':
`and name=#{name}`")]
async fn py_sql_tx(rb: &RBatis, tx_id: &String, name: &str) -> Vec<BizActivity> { impled!() }
Because of the compile time, the annotations need to declare the database type to be used
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"https://raw.githubusercontent.com/rbatis/rbatis/master/rbatis-codegen/mybatis-3-mapper.dtd">
<mapper>
<select id="select_by_condition">
`select * from biz_activity where `
<if test="name != ''">
name like #{name}
</if>
</select>
</mapper>
///select page must have '?:&PageRequest' arg and return 'Page<?>'
#[html_sql("example/example.html")]
async fn select_by_condition(rb: &dyn Executor, page_req: &PageRequest, name: &str) -> Page<BizActivity> { impled!() }
use once_cell::sync::Lazy;
pub static RB: Lazy<RBatis> = Lazy::new(|| RBatis::new());
/// Macro generates execution logic based on method definition, similar to @select dynamic SQL of Java/Mybatis
/// RB is the name referenced locally by RBatis, for example DAO ::RB, com:: XXX ::RB... Can be
/// The second parameter is the standard driver SQL. Note that the corresponding database parameter mysql is? , pg is $1...
/// macro auto edit method to 'pub async fn select(name: &str) -> rbatis::core::Result<BizActivity> {}'
///
#[sql("select * from biz_activity where id = ?")]
pub async fn select(rb: &RBatis, name: &str) -> BizActivity {}
//or pub async fn select(name: &str) -> rbatis::core::Result<BizActivity> {}
#[tokio::test]
pub async fn test_macro() {
fast_log::init(fast_log::Config::new().console()).expect("rbatis init fail");
RB.link("mysql://root:123456@localhost:3306/test").await.unwrap();
let a = select(&RB, "1").await.unwrap();
println!("{:?}", a);
}
Rely on rbatis-codegen to create the source code of the corresponding structure from the html file at compile time (with debug_mode(Cargo.toml- rbatis = { features = ["debug_mode"]}
) enabled, you can observe the code-generated function), and call the generated method directly at run time.
We know that compilation is generally divided into three steps, lexes, syntactic analysis, semantic analysis, and intermediate code generation. In rbatis,
Lexical analysis is handled by the dependent func.rs in rbatis-codegen
, which relies on syn and quote.
Parsing is done by parser_html and parser_pysql in rbatis-codegen
The generated syntax tree is a structure defined in the syntax_tree package in rbatis-codegen
Intermediate code generation has func.rs generation function, all supported functions are defined in rbatis-codegen
What is described above occurs during the cargo build phase, which is the compilation phase of the rust procedural macro, where the code generated by rbatis-codegen
is handed back to the rust compiler for LLVM compilation to produce pure machine code
So I think rbatis is Truly zero overhead dynamic SQL compile-time ORM.
You are welcome to submit the merge, and make sure that any functionality you add has the appropriate mock unit test function added under the test package.
('rbatis')