quaint

Crates.ioquaint
lib.rsquaint
version0.2.0-alpha.13
sourcesrc
created_at2019-12-27 19:36:08.204163
updated_at2020-06-16 12:23:02.878477
descriptionAn abstraction layer for SQL databases.
homepagehttps://github.com/prisma/quaint/
repositoryhttps://github.com/prisma/quaint/
max_upload_size
id192738
size573,553
Matthias Oertel (do4gr)

documentation

https://docs.rs/quaint/

README

Quaint

crates.io 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.

Commit count: 896

cargo fmt