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

#1978 in Database interfaces

Download history 78/week @ 2023-12-12 50/week @ 2023-12-19 16/week @ 2023-12-26 10/week @ 2024-01-09 22/week @ 2024-01-16 11/week @ 2024-01-30 45/week @ 2024-02-06 82/week @ 2024-02-13 61/week @ 2024-02-20 62/week @ 2024-02-27 30/week @ 2024-03-05 36/week @ 2024-03-12 3/week @ 2024-03-19 33/week @ 2024-03-26

106 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–25MB
~392K SLoC