fraiseql-db 2.10.0

Database abstraction layer for FraiseQL v2
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! MySQL database adapter.
//!
//! Provides connection pooling and query execution for MySQL.

mod adapter;
pub mod introspector;
mod where_generator;

pub use adapter::MySqlAdapter;
pub use introspector::*;
pub use where_generator::MySqlWhereGenerator;