r2d2_odbc 0.4.0

ODBC support for the r2d2 connection pool
Documentation
extern crate odbc;
extern crate r2d2;
extern crate r2d2_odbc;

use r2d2::Pool;
use r2d2_odbc::ODBCConnectionManager;
use r2d2_odbc::ODBCConnectionManagerTx;

use std::sync::mpsc;
use std::thread;

#[test]
fn test_smoke() {
    let manager = ODBCConnectionManager::new("DSN=PostgreSQL");
    let pool = Pool::builder().max_size(2).build(manager).unwrap();

    let (s1, r1) = mpsc::channel();
    let (s2, r2) = mpsc::channel();

    let pool1 = pool.clone();
    let t1 = thread::spawn(move || {
        let conn = pool1.get().unwrap();
        s1.send(()).unwrap();
        r2.recv().unwrap();
        drop(conn);
    });

    let pool2 = pool.clone();
    let t2 = thread::spawn(move || {
        let conn = pool2.get().unwrap();
        s2.send(()).unwrap();
        r1.recv().unwrap();
        drop(conn);
    });

    t1.join().unwrap();
    t2.join().unwrap();

    pool.get().unwrap();
}

#[test]
fn test_smoke_tx() {
    let manager = ODBCConnectionManagerTx::new("DSN=PostgreSQL");
    let pool = Pool::builder().max_size(2).build(manager).unwrap();

    let (s1, r1) = mpsc::channel();
    let (s2, r2) = mpsc::channel();

    let pool1 = pool.clone();
    let t1 = thread::spawn(move || {
        let conn = pool1.get().unwrap();
        s1.send(()).unwrap();
        r2.recv().unwrap();
        drop(conn);
    });

    let pool2 = pool.clone();
    let t2 = thread::spawn(move || {
        let conn = pool2.get().unwrap();
        s2.send(()).unwrap();
        r1.recv().unwrap();
        drop(conn);
    });

    t1.join().unwrap();
    t2.join().unwrap();

    pool.get().unwrap();
}