Trait odbc_api::handles::CData

source ·
pub unsafe trait CData {
    // Required methods
    fn cdata_type(&self) -> CDataType;
    fn indicator_ptr(&self) -> *const isize;
    fn value_ptr(&self) -> *const c_void;
    fn buffer_length(&self) -> isize;
}
Expand description

Provides description of C type layout and pointers to it. Used to bind and buffers to ODBC statements.

Safety

In case of variable sized types Self::indicator_ptr must not exceed the value pointed to by Self::value_ptr. This requirement is a bit tricky since, if the same indicator buffer is used in an output paramater the indicator value may be larger in case of truncation.

Required Methods§

source

fn cdata_type(&self) -> CDataType

The identifier of the C data type of the value buffer. When it is retrieving data from the data source with fetch, the driver converts the data to this type. When it sends data to the source, the driver converts the data from this type.

source

fn indicator_ptr(&self) -> *const isize

Indicates the length of variable sized types. May be zero for fixed sized types. Used to determine the size or existence of input parameters.

source

fn value_ptr(&self) -> *const c_void

Pointer to a value corresponding to the one described by cdata_type.

source

fn buffer_length(&self) -> isize

Maximum length of the type in bytes (not characters). It is required to index values in bound buffers, if more than one parameter is bound. Can be set to zero for types not bound as parameter arrays, i.e. CStr.

Implementations on Foreign Types§

source§

impl CData for Timestamp

source§

impl CData for i64

source§

impl<T> CData for Vec<T>where T: Pod,

source§

impl CData for f32

source§

impl CData for Date

source§

impl CData for u8

source§

impl CData for f64

source§

impl CData for i16

source§

impl CData for i8

source§

impl CData for Time

source§

impl CData for u64

source§

impl CData for u16

source§

impl CData for Box<dyn InputParameter>

source§

impl CData for u32

source§

impl CData for i32

source§

impl CData for CStr

source§

impl CData for CString

source§

impl CData for Numeric

Implementors§

source§

impl CData for AnyBuffer

source§

impl CData for BinColumn

source§

impl CData for Bit

source§

impl CData for CharColumn

source§

impl CData for WCharColumn

source§

impl<B, K> CData for VarCell<B, K>where B: Borrow<[K::Element]>, K: VarKind,

source§

impl<T> CData for WithDataType<T>where T: CData,

source§

impl<T> CData for Nullable<T>where T: Pod,