[][src]Trait odbc_api::RowSetBuffer

pub unsafe trait RowSetBuffer {
    unsafe fn bind_to_cursor(
        &mut self,
        cursor: &mut Cursor<'_>
    ) -> Result<(), Error>; }

A Row set buffer binds row, or column wise buffers to a cursor in order to fill them with row sets with each call to fetch.

Required methods

unsafe fn bind_to_cursor(
    &mut self,
    cursor: &mut Cursor<'_>
) -> Result<(), Error>

Binds the buffer either column or row wise to the cursor.

Safety

It's the implementations responsibility to ensure that all bound buffers are valid as specified and live long enough.

Loading content...

Implementors

impl RowSetBuffer for TextRowSet[src]

Loading content...