sql_tools 0.11.10

A rust crate meant to make SQL queries simple and communication between various SQL versions easy.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod initialization;
pub mod oracle;
pub mod sqlite;
pub mod utils;

#[derive(Debug, Clone)]
pub struct OracleConnect {
    pub connection_string: String,
    pub username: String,
    pub password: String,
}

#[derive(Debug, Clone)]
pub enum SQLiteConnect {
    Path(String),
    Memory,
}