rbdc-oracle 0.10.0

Oracle driver for rbdc
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[derive(Debug, Clone)]
pub(crate) struct OracleStatementHandle {
    sql: String,
}

impl OracleStatementHandle {
    pub(crate) fn new(sql: &str) -> Self {
        Self {
            sql: sql.to_owned(),
        }
    }

    pub(crate) fn sql(&self) -> &str {
        &self.sql
    }
}