RBDC-Oracle
- Oracle driver for rbatis
Requirements
- C linker. For example:
sudo apt install build-essential
-
Rbatis. See Rbatis
-
Oracle client 11.2 or later. See ODPI-C installation document
OracleConnectOptions
When using rbdc-oracle, construct OracleConnectOptions with new() /
default() plus builder methods, or with_credentials(...).
Do not use a struct literal in downstream crates. The type is non-exhaustive so new fields can be added without breaking every caller.
use OracleConnectOptions;
let options = with_credentials;
let tuned = new
.username
.password
.connect_string
.statement_cache_capacity
.row_channel_size
.command_channel_size;