oracle-rs 0.1.7

Pure Rust driver for Oracle databases - no OCI/ODPI-C required
Documentation
1
2
3
4
5
6
7
8
9
10
//! Buffer abstractions for TNS protocol encoding/decoding
//!
//! This module provides efficient buffer types for reading and writing
//! binary TNS protocol data.

mod read;
mod write;

pub use read::ReadBuffer;
pub use write::WriteBuffer;