7 releases (breaking)

0.6.0 Jan 7, 2023
0.5.0 Apr 28, 2021
0.4.1 Mar 9, 2021
0.3.0 Jan 9, 2020
0.1.0 Oct 2, 2019

#2113 in Database interfaces

Download history 2/week @ 2023-12-21 26/week @ 2024-02-15 139/week @ 2024-02-22 121/week @ 2024-02-29 48/week @ 2024-03-07 47/week @ 2024-03-14 70/week @ 2024-03-21 163/week @ 2024-03-28 38/week @ 2024-04-04

325 downloads per month
Used in 2 crates

MIT/Apache

9KB

r2d2-oracle

CI Crates.io Crates.io unsafe forbidden

The documentation can be found on docs.rs.

Oracle support for the r2d2 connection pool. This fits in between the r2d2 connection manager and oracle database driver crates.

Usage

See the documentation of r2d2 for the details on how to use the connection pool.

use std::thread;
use r2d2_oracle::OracleConnectionManager;

fn main() {
    let manager = OracleConnectionManager::new("user", "password", "localhost");
    let pool = r2d2::Pool::builder()
         .max_size(15)
         .build(manager)
         .unwrap();
    
    for _ in 0..20 {
        let pool = pool.clone();
        thread::spawn(move || {
            let conn = pool.get().unwrap();
            // use the connection
            // it will be returned to the pool when it falls out of scope.
        });
    }
}

If you want to use chrono data types, enable the chrono feature:

[dependencies]
r2d2-oracle = { version = "0.2.0", features = ["chrono"] }

Changelog

For the changelog please see the dedicated CHANGELOG.md.

Current Status of the Crate & Roadmap to v1.0.0

This is the initial release of the crate and has not yet been proven in production. Nevertheless: the crate is very small so not many problems are expected. The precondition for releasing v1.0.0 is that both r2d2 and oracle have released their v1.0.0.

Alternatives to r2d2-oracle

You may also want to consider the following alternatives to this crate, depending on your use-cases:

  • Starting with version 0.5.5 the oracle provides buit-in connection pooling support
  • There is an async (tokio-based) version of r2d2, bb8 and a corresponding bb8-oracle fork of r2d2-oracle exists

Minimum Supported Rust Version (MSRV)

This crate is guaranteed to compile on stable Rust 1.54 and up. It might compile with older versions but that may change in any new patch release.

Dependencies

~5–12MB
~122K SLoC