database-reflection
Collection of Rust structs and traits to construct a high-level database reflection.
Currently under development. Subject to breaking changes and documentation struggles.
For the time being the library supports only MariaDB with InnoDB table engine.
Could theoretically work with MySQL and InnoDB but that is not confirmed as of time of writing.
Use at your own risk. Still under development.
Quick Start
Manual Construction
Take a look at test integration.rs
to see how to build "by hand".
use Database;
let db_name = "test";
let mut db = new;
// and so on...
Using Reflection Adapter
If your database is designed by the convention this library expects, you may hope to be able to build a reflection using the provided reflection adapter for MariaDB.
Note: this requires the mariadb
feature to be enabled.
use MariadbInnodbReflectionAdapter;
use ;
use ;
dotenv?;
let connection_str = var?;
let reflection = new.connect.await?.get_reflection.await?;
Note: connection_str
is a standard DSN.
License
This library (database-reflection) is open sourced under the MIT License.