[][src]Trait sibyl::Stmt

pub trait Stmt: Conn {
    fn stmt_ptr(&self) -> *mut OCIStmt;
fn conn(&self) -> &dyn Conn;
fn get_max_col_size(&self) -> usize;
fn usr_env(&self) -> &dyn UsrEnv; }

A trait for types that can provide access to the OCIStmt handle.

It also exposes other methods that are used by the FromSql trait implementations.

Required methods

fn stmt_ptr(&self) -> *mut OCIStmt

fn conn(&self) -> &dyn Conn

fn get_max_col_size(&self) -> usize

fn usr_env(&self) -> &dyn UsrEnv

Loading content...

Implementors

impl<'_> Stmt for Cursor<'_>[src]

impl<'_> Stmt for Statement<'_>[src]

Loading content...