27 releases

0.2.0-alpha.13 Jun 16, 2020
0.2.0-alpha.12 May 20, 2020
0.2.0-alpha.11 Mar 26, 2020
0.2.0-alpha.9 Feb 28, 2020
0.1.4 Dec 30, 2019

#2400 in Database interfaces

Download history 32/week @ 2024-03-13 17/week @ 2024-03-20 41/week @ 2024-03-27 41/week @ 2024-04-03 15/week @ 2024-04-10 35/week @ 2024-04-17 13/week @ 2024-04-24 24/week @ 2024-05-01 13/week @ 2024-05-08 67/week @ 2024-05-15 90/week @ 2024-05-22 83/week @ 2024-05-29 49/week @ 2024-06-05 85/week @ 2024-06-12 71/week @ 2024-06-19 54/week @ 2024-06-26

275 downloads per month

Apache-2.0

555KB
12K SLoC

Quaint

docs.rs Build status Discord

Quaint is an abstraction over certain SQL databases. It provides:

  • An AST for building dynamic SQL queries.
  • Visitors for different databases to generate SQL strings.
  • Connectors to abstract over results and querying.
  • Pooling with mobc
  • Async/await and Futures 0.3

Documentation

Feature flags

  • full: All connectors and a pooled Quaint manager
  • full-postgresql: Pooled support for PostgreSQL
  • full-mysql: Pooled support for MySQL
  • full-sqlite: Pooled support for SQLite
  • full-mssql: Pooled support for Microsoft SQL Server
  • single: All connectors, but no pooling
  • single-postgresql: Single connection support for PostgreSQL
  • single-mysql: Single connection support for MySQL
  • single-sqlite: Single connection support for SQLite
  • single-mssql: Single connection support for Microsoft SQL Server

Goals:

  • Query generation when the database and conditions are not known beforehand.
  • Parameterized queries and SQL injection protection.
  • A modular design, a separate AST and separate visitors and connectors.

Non-goals:

  • Database-level type-safety in query building or being an ORM.

For type-safe database abstraction, Diesel is an excellent choice.

Testing:

  • See .envrc for connection params. Override variables if different. MySQL, PostgreSQL and SQL Server needs to be running for tests to succeed.

Then:

> cargo test

Query debug

The queries can be logged by setting the LOG_QUERIES environment variable to any value. They'll be logged at the INFO level and are visible when having a logger in scope. If using Tracing, compiling Quaint with the tracing-log feature flag will parameterize the logged queries into a more suitable format for Tracing.

Dependencies

~3–22MB
~357K SLoC