database-reflection

Crates.iodatabase-reflection
lib.rsdatabase-reflection
version0.1.3
sourcesrc
created_at2024-01-07 21:11:03.844109
updated_at2024-02-24 23:47:03.700189
descriptionDatabase reflection library. Currently supporting only MariaDB and MySQL with InnoDB.
homepagehttps://github.com/iganev/database-reflection
repositoryhttps://github.com/iganev/database-reflection
max_upload_size
id1092032
size88,482
Ivan Ganev (iganev)

documentation

https://docs.rs/crate/database-reflection/

README

Crates.io API dependency status Build and Test codecov

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_reflection::reflection::Database;

    let db_name = "test"; 
    let mut db = Database::new(db_name);

    // 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 database_reflection::adapter::mariadb_innodb::MariadbInnodbReflectionAdapter;
    use database_reflection::adapter::reflection_adapter::{ReflectionAdapter, ReflectionAdapterUninitialized};
    use database_reflection::reflection::{Column, Constraint, Database, DefaultValue, Index, SqlDatatype, Table};

    dotenvy::dotenv()?;
    let connection_str = env::var("DB_CONNECTION")?;
    let reflection = MariadbInnodbReflectionAdapter::new(&connection_str).connect().await?.get_reflection().await?;

Note: connection_str is a standard DSN.

License

This library (database-reflection) is open sourced under the MIT License.

Commit count: 0

cargo fmt