rustlavel-db 0.8.0

Rustlavel database layer: PostgreSQL driver, query builder, migrations, and ORM
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! The MySQL driver, implemented directly on the client/server wire protocol.
//!
//! Speaks to MySQL 5.7 and 8.x, and to MariaDB, over plain TCP. Parameterised
//! statements go through the prepared-statement protocol, so a bound value
//! never reaches the SQL parser as text.

pub mod auth;
pub mod connection;
pub mod protocol;
pub mod types;

pub use connection::{DEFAULT_PORT, DRIVER_NAME, MySqlConnection, MySqlDriver};