[][src]Struct r2d2_oracle::OracleConnectionManager

pub struct OracleConnectionManager { /* fields omitted */ }

An r2d2::ManageConnection for oracle::Connections.

Example

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

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.
    });
}

Methods

impl OracleConnectionManager[src]

pub fn new(
    username: &str,
    password: &str,
    connect_string: &str
) -> OracleConnectionManager
[src]

Initialise the connection manager with the data needed to create new connections. Refer to the documentation of oracle::Connection for further details on the parameters.

Example

let manager = OracleConnectionManager::new("user", "password", "localhost");

pub fn from_connector(connector: Connector) -> OracleConnectionManager[src]

Initialise the connection manager with the data needed to create new connections using oracle::Connector. This allows setting additional connection data.

If a connection can be established only with a username, password and connect string, use new instead.

Example

// connect system/manager as sysdba
let mut connector = oracle::Connector::new("system", "manager", "");
connector.privilege(oracle::Privilege::Sysdba);
let manager = OracleConnectionManager::from_connector(connector);

Trait Implementations

impl Debug for OracleConnectionManager[src]

impl ManageConnection for OracleConnectionManager[src]

type Connection = Connection

The connection type this manager deals with.

type Error = Error

The error type returned by Connections.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err