9个不稳定版本

使用旧的Rust 2015

0.4.3 2018年3月8日
0.4.2 2017年6月16日
0.4.1 2016年11月7日
0.4.0 2016年8月1日
0.0.1 2015年8月2日

#2010数据库接口

Apache-2.0/MIT

28KB
716

SQLite 包 文档 构建

该包提供了一个SQL语句构造函数。

示例

use sql::prelude::*;

// CREATE TABLE `users` (`id` INTEGER NOT NULL, `name` TEXT, `photo` BLOB)
println!("{}", create_table("users").column("id".integer().not_null())
                                    .column("name".string())
                                    .column("photo".binary())
                                    .compile().unwrap());

// DELETE FROM `users`
println!("{}", delete_from("users").compile().unwrap());

// INSERT INTO `users` (`id`, `name`) VALUES (?, ?), (?, ?)
println!("{}", insert_into("users").columns(&["id", "name"]).batch(2)
                                   .compile().unwrap());

// SELECT * FROM `users` WHERE `name` LIKE 'A%'
println!("{}", select_from("users").so_that(column("name").like("A%"))
                                   .compile().unwrap());

// SELECT * FROM `users` ORDER BY `name` DESC
println!("{}", select_from("users").order_by(column("name").descend())
                                   .compile().unwrap());

// SELECT `name`, `photo` FROM `users` LIMIT 1
println!("{}", select_from("users").columns(&["name", "photo"]).limit(1)
                                   .compile().unwrap());

贡献

您的贡献非常受重视。请随时提出问题或发起拉取请求。请注意,任何提交给项目的内容都将根据LICENSE.md中给出的条款进行许可。

无运行时依赖