#sql-database #async-orm #postgresql #mssql #sqlite #orm #mysql

welds

适用于 (postgres, mssql, mysql, sqlite) 的异步 ORM

20 个版本

0.4.0 2024年8月12日
0.3.7 2024年7月19日
0.3.5 2024年5月8日
0.3.1 2024年3月11日
0.1.7 2023年5月18日

#94 in 数据库接口

Download history 144/week @ 2024-05-03 22/week @ 2024-05-10 31/week @ 2024-05-17 16/week @ 2024-05-24 37/week @ 2024-05-31 30/week @ 2024-06-07 48/week @ 2024-06-14 16/week @ 2024-06-21 9/week @ 2024-06-28 19/week @ 2024-07-05 46/week @ 2024-07-12 281/week @ 2024-07-19 242/week @ 2024-07-26 29/week @ 2024-08-02 147/week @ 2024-08-09 53/week @ 2024-08-16

每月 483 次下载
用于 welds-cli

BSD-3-Clause

335KB
9K SLoC

使用 sqlx 和/或 Tiberius 编写的异步 ORM

Welds

Welds 是使用 sqlx 和/或 Tiberius 编写的异步 ORM

功能

  • 全面支持异步
  • 支持多种 SQL 数据库 (Mssql, MySql, Postgres, Sqlite)
  • 为了便于开发而编写。功能不需要在 traits 后面隐藏。代码应易于编写和阅读。
  • 当您需要降级到原始 SQL 时,始终可用的低级别连接。

在底层,Welds 使用

  • sqlx 用于 Postgres, MySql 和 Sqlite。
  • Tiberius 用于 MSSQL

兼容性

  • welds 的 0.4.* 线使用 sqlx 0.8 编译
  • welds 的 0.3.* 线使用 sqlx 0.7 编译

示例设置

#[derive(Debug, WeldsModel)]
#[welds(schema= "inventory", table = "products")]
#[welds(BelongsTo(seller, super::people::People, "seller_id"))]
pub struct Product {
    #[welds(rename = "product_id")]
    #[welds(primary_key)]
    pub id: i32,
    pub name: String,
    pub seller_id: Option<i32>,
    pub description: Option<String>,
    pub price: Option<f32>,
}

示例用法

基本选择

  let url = "postgres://postgres:password@localhost:5432";
  let client = welds::connections::postgres::connect(url).await.unwrap();

  let products = Product::where_col(|p| p.price.equal(3.50)).run(&client).await?;

跨表的基本筛选

  let client = welds::connections::mssql::connect(url).await.unwrap();

  let sellers = Product::where_col(|product| product.price.equal(3.50))
        .map_query(|product| product.seller )
        .where_col(|seller| seller.name.ilike("%Nessie%") )
        .run(&client).await?;

创建和更新

  let client = welds::connections::sqlite::connect(url).await.unwrap();
  
  let mut cookies = Product::new();
  cookies.name = "cookies".to_owned();
  // Creates the product cookie
  cookies.save.await(&client)?; 
  cookies.description = "Yum".to_owned();
  // Updates the Cookies
  cookies.save.await(&client)?; 

其他示例

更多示例请查看 示例仓库

依赖项

~0.3–19MB
~242K SLoC