Trait odbc_api::handles::DelayedInput[][src]

pub unsafe trait DelayedInput {
    fn cdata_type(&self) -> CDataType;
fn indicator_ptr(&self) -> *const isize;
fn stream_ptr(&mut self) -> *mut c_void; }
Expand description

Stream which can be bound as in input parameter to a statement in order to provide the actual data at statement execution time, rather than preallocated buffers.

Required methods

Then streaming data to the “data source” the driver converts the data from this type.

Pointer to the stream or an application defined value identifying the stream.

Implementors