[][src]Crate rdbc_postgres

Postgres RDBC Driver

This crate implements an RDBC Driver for the postgres crate.

The RDBC (Rust DataBase Connectivity) API is loosely based on the ODBC and JDBC standards.

This example is not tested
use rdbc::Value;
use rdbc_postgres::PostgresDriver;
let driver = PostgresDriver::new();
let conn = driver.connect("postgres://postgres:password@localhost:5433").unwrap();
let mut conn = conn.borrow_mut();
let stmt = conn.prepare("SELECT a FROM b WHERE c = ?").unwrap();
let mut stmt = stmt.borrow_mut();
let rs = stmt.execute_query(&vec![Value::Int32(123)]).unwrap();
let mut rs = rs.borrow_mut();
while rs.next() {
  println!("{:?}", rs.get_string(1));
}

Structs

PostgresDriver