[][src]Struct mysql::PooledConn

pub struct PooledConn { /* fields omitted */ }

Pooled mysql connection which will return to the pool on drop.

You should prefer using prepare or prep_exec instead of query where possible, except cases when statement has no params and when it has no return values or return values which evaluates to Value::Bytes.

query is a part of mysql text protocol, so under the hood you will always receive Value::Bytes as a result and from_value will need to parse it if you want, for example, i64

let mut conn = pool.get_conn().unwrap();

conn.query("SELECT 42").map(|mut result| {
    let cell = result.next().unwrap().unwrap().take(0).unwrap();
    assert_eq!(cell, Value::Bytes(b"42".to_vec()));
    assert_eq!(from_value::<i64>(cell), 42i64);
}).unwrap();
conn.prep_exec("SELECT 42", ()).map(|mut result| {
    let cell = result.next().unwrap().unwrap().take(0).unwrap();
    assert_eq!(cell, Value::Int(42i64));
    assert_eq!(from_value::<i64>(cell), 42i64);
}).unwrap();

For more info on how to work with query results please look at QueryResult documentation.

Methods

impl PooledConn[src]

pub fn query<T: AsRef<str>>(&mut self, query: T) -> MyResult<QueryResult>[src]

Redirects to Conn#query.

pub fn first<T: AsRef<str>, U: FromRow>(
    &mut self,
    query: T
) -> MyResult<Option<U>>
[src]

pub fn prepare<T: AsRef<str>>(&mut self, query: T) -> MyResult<Stmt>[src]

pub fn prep_exec<A, T>(&mut self, query: A, params: T) -> MyResult<QueryResult> where
    A: AsRef<str>,
    T: Into<Params>, 
[src]

pub fn first_exec<Q, P, T>(
    &mut self,
    query: Q,
    params: P
) -> MyResult<Option<T>> where
    Q: AsRef<str>,
    P: Into<Params>,
    T: FromRow
[src]

pub fn start_transaction(
    &mut self,
    consistent_snapshot: bool,
    isolation_level: Option<IsolationLevel>,
    readonly: Option<bool>
) -> MyResult<Transaction>
[src]

pub fn as_mut(&mut self) -> &mut Conn[src]

Gives mutable reference to the wrapped Conn.

pub fn as_ref(&self) -> &Conn[src]

Gives reference to the wrapped Conn.

pub fn unwrap(self) -> Conn[src]

Unwraps wrapped Conn.

pub fn set_local_infile_handler(&mut self, handler: Option<LocalInfileHandler>)[src]

A way to override default local infile handler for this pooled connection. Destructor will restore original handler before returning connection to a pool. See Conn::set_local_infile_handler.

Trait Implementations

impl GenericConnection for PooledConn[src]

impl Drop for PooledConn[src]

impl Debug for PooledConn[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> Same<T> for T

type Output = T

Should always be Self