Trait odbc_safe::Handle [] [src]

pub unsafe trait Handle {
    const HANDLE_TYPE: HandleType;

    fn handle(&self) -> SQLHANDLE;
}

Basic functionality for all wrappers around ODBC Handles

Associated Constants

Used to identify the type of the handle in various functions of the ODBC C interface

Required Methods

Returns a ptr to the wrapped ODBC Object

Implementors