1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//!
//! Rust Firebird Client
//!

mod connection;
#[cfg(feature = "chrono")]
mod date_time;
#[allow(clippy::redundant_static_lifetimes)]
mod ibase;
mod params;
mod row;
mod statement;
mod status;
mod transaction;
mod xsqlda;

pub use crate::{
    connection::{Connection, ConnectionBuilder, Dialect},
    row::Row,
    statement::Statement,
    status::FbError,
    transaction::Transaction,
};