Struct r2d2_postgres::PostgresConnectionManager
[−]
[src]
pub struct PostgresConnectionManager { // some fields omitted }
An r2d2::ManageConnection
for postgres::Connection
s.
Example
#![allow(unstable)] extern crate r2d2; extern crate r2d2_postgres; extern crate postgres; use std::sync::Arc; use std::default::Default; use std::thread; use postgres::SslMode; use r2d2_postgres::PostgresConnectionManager; fn main() { let config = r2d2::Config::default(); let manager = PostgresConnectionManager::new("postgres://postgres@localhost", SslMode::None).unwrap(); let pool = Arc::new(r2d2::Pool::new(config, manager).unwrap()); for i in 0..10i32 { let pool = pool.clone(); thread::spawn(move || { let conn = pool.get().unwrap(); conn.execute("INSERT INTO foo (bar) VALUES ($1)", &[&i]).unwrap(); }); } }
Methods
impl PostgresConnectionManager
fn new<T: IntoConnectParams>(params: T, ssl_mode: SslMode) -> Result<PostgresConnectionManager, ConnectError>
Creates a new PostgresConnectionManager
.
See postgres::Connection::connect
for a description of the parameter
types.