sql_tools/sql_implementations/mod.rs
1pub mod initialization;
2pub mod oracle;
3pub mod sqlite;
4pub mod utils;
5
6#[derive(Debug, Clone)]
7pub struct OracleConnect {
8 pub connection_string: String,
9 pub username: String,
10 pub password: String,
11}
12
13#[derive(Debug, Clone)]
14pub enum SQLiteConnect {
15 Path(String),
16 Memory,
17}