#sql-query #sql #inline #postgresql

inline-sql

write SQL queries directly in Rust functions

2 unstable releases

0.2.0 Mar 10, 2024
0.1.4 Mar 6, 2024

#514 in Database interfaces

Download history 457/week @ 2024-03-04 71/week @ 2024-03-11 40/week @ 2024-04-01

203 downloads per month

BSD-2-Clause

15KB
94 lines

inline-sql

Write SQL queries inside Rust functions.

The inline-sql crate lets you annotate a function to directly write an SQL query as the function body. You can use the function parameters as placeholders in your query, and the query result will automatically be converted to the return type.

See the documentation of the #[inline_sql] macro for more details and examples.

Currently, only tokio-postgres is supported as backend.

Example: Return a Vec of rows.

use inline_sql::inline_sql;

#[inline_sql]
async fn get_pets_by_species(
  client: &tokio_postgres::Client,
  species: &str,
) -> Result<Vec<Pet>, tokio_postgres::Error> {
    query!(SELECT * FROM pets WHERE species = $species)
}

Planned features:

  • Support for more backends, including synchronous backends.
  • Parsing the function arguments to determine the name of the client object.
  • Support for queries that return exactly one row or an error.
  • More attribute arguments to allow:
    • Specifying the query type instead of deducing it from the return type.
    • Changing how the client is obtained in the generated code (for example, from a member of self).

Dependencies

~8–20MB
~320K SLoC