33 releases
0.4.3 | Oct 11, 2024 |
---|---|
0.4.0 | Aug 26, 2024 |
0.3.16 | Jun 13, 2024 |
0.3.13 | Sep 9, 2023 |
0.1.2 | Mar 24, 2022 |
#1079 in Database interfaces
254 downloads per month
13KB
206 lines
sqlx-type
Proc macros to perform type sql queries similarly to sqlx::query, but without the need
to run cargo sqlx prepare
A schema definition must be placed in "sqlx-type-schema.sql" in the root of a using crate:
DROP TABLE IF EXISTS `t1`;
CREATE TABLE `t1` (
`id` int(11) NOT NULL,
`cbool` tinyint(1) NOT NULL,
`cu8` tinyint UNSIGNED NOT NULL,
`cu16` smallint UNSIGNED NOT NULL,
`cu32` int UNSIGNED NOT NULL,
`cu64` bigint UNSIGNED NOT NULL,
`ci8` tinyint,
`ci16` smallint,
`ci32` int,
`ci64` bigint,
`ctext` varchar(100) NOT NULL,
`cbytes` blob,
`cf32` float,
`cf64` double
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
ALTER TABLE `t1`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
See sql_type::schema for a detailed description.
This schema can then be used to type queries:
use std::env, sqlx::MySqlPool, sqlx_type::query;
async fn test() -> Result<(), sqlx::Error> {
let pool = MySqlPool::connect(&env::var("DATABASE_URL").unwrap()).await?;
let id = query!("INSERT INTO `t1` (`cbool`, `cu8`, `cu16`, `cu32`, `cu64`, `ctext`)
VALUES (?, ?, ?, ?, ?, ?)", true, 8, 1243, 42, 42, "Hello world")
.execute(&pool).await?.last_insert_id();
let row = query!("SELECT `cu16`, `ctext`, `ci32` FROM `t1` WHERE `id`=?", id)
.fetch_one(&pool).await?;
assert_eq!(row.cu16, 1234);
assert_eq!(row.ctext, "Hello would");
assert!(row.ci32.is_none());
Ok(())
}
Dependencies
~3.5–5MB
~89K SLoC