pub struct BinColumn { /* private fields */ }
Expand description
A buffer intended to be bound to a column of a cursor. Elements of the buffer will contain a variable amount of bytes up to a maximum length. Since elements of this type have variable length an additional indicator buffer is also maintained, whether the column is nullable or not. Therefore this buffer type is used for variable sized binary data whether it is nullable or not.
Implementations§
Source§impl BinColumn
impl BinColumn
Sourcepub fn try_new(
batch_size: usize,
element_size: usize,
) -> Result<Self, TooLargeBufferSize>
pub fn try_new( batch_size: usize, element_size: usize, ) -> Result<Self, TooLargeBufferSize>
This will allocate a value and indicator buffer for batch_size
elements. Each value may
have a maximum length of element_size
. Uses a fallibale allocation for creating the
buffer. In applications often the element_size
of the buffer, might be directly inspired
by the maximum size of the type, as reported, by ODBC. Which might get exceedingly large for
types like VARBINARY(MAX), or IMAGE. On the downside, this method is potentially slower than
new.
Sourcepub fn new(batch_size: usize, element_size: usize) -> Self
pub fn new(batch_size: usize, element_size: usize) -> Self
This will allocate a value and indicator buffer for batch_size
elements. Each value may
have a maximum length of max_len
.
Sourcepub fn value_at(&self, row_index: usize) -> Option<&[u8]>
pub fn value_at(&self, row_index: usize) -> Option<&[u8]>
Return the value for the given row index.
The column buffer does not know how many elements were in the last row group, and therefore
can not guarantee the accessed element to be valid and in a defined state. It also can not
panic on accessing an undefined element. It will panic however if row_index
is larger or
equal to the maximum number of elements in the buffer.
Sourcepub fn indicator_at(&self, row_index: usize) -> Indicator
pub fn indicator_at(&self, row_index: usize) -> Indicator
Indicator value at the specified position. Useful to detect truncation of data.
The column buffer does not know how many elements were in the last row group, and therefore
can not guarantee the accessed element to be valid and in a defined state. It also can not
panic on accessing an undefined element. It will panic however if row_index
is larger or
equal to the maximum number of elements in the buffer.
Sourcepub fn content_length_at(&self, row_index: usize) -> Option<usize>
pub fn content_length_at(&self, row_index: usize) -> Option<usize>
Length of value at the specified position. This is different from an indicator as it refers to the length of the value in the buffer, not to the length of the value in the datasource. The two things are different for truncated values.
Sourcepub fn has_truncated_values(&self, num_rows: usize) -> Option<Indicator>
pub fn has_truncated_values(&self, num_rows: usize) -> Option<Indicator>
Some
if any value is truncated in the range [0, num_rows).
After fetching data we may want to know if any value has been truncated due to the buffer not being able to hold elements of that size. This method checks the indicator buffer element wise and reports one indicator which indicates a size large than the maximum element size, if it exits.
Sourcepub fn set_max_len(&mut self, new_max_len: usize)
pub fn set_max_len(&mut self, new_max_len: usize)
Changes the maximum element length the buffer can hold. This operation is useful if you find an unexpected large input during insertion. All values in the buffer will be set to NULL.
§Parameters
new_max_len
: New maximum string length without terminating zero.
Sourcepub fn view(&self, num_rows: usize) -> BinColumnView<'_>
pub fn view(&self, num_rows: usize) -> BinColumnView<'_>
View of the first num_rows
values of a binary column.
Num rows may not exceed the actual amount of valid num_rows filled by the ODBC API. The
column buffer does not know how many elements were in the last row group, and therefore can
not guarantee the accessed element to be valid and in a defined state. It also can not panic
on accessing an undefined element. It will panic however if row_index
is larger or equal
to the maximum number of elements in the buffer.
Sourcepub fn set_value(&mut self, index: usize, input: Option<&[u8]>)
pub fn set_value(&mut self, index: usize, input: Option<&[u8]>)
Sets the value of the buffer at index to NULL or the specified bytes. This method will panic on out of bounds index, or if input holds a value which is longer than the maximum allowed element length.
Sourcepub fn fill_null(&mut self, from: usize, to: usize)
pub fn fill_null(&mut self, from: usize, to: usize)
Fills the column with NULL, between From and To
Sourcepub fn resize_max_element_length(&mut self, new_max_len: usize, num_rows: usize)
pub fn resize_max_element_length(&mut self, new_max_len: usize, num_rows: usize)
Changes the maximum number of bytes per row the buffer can hold. This operation is useful if you find an unexpected large input during insertion.
This is however costly, as not only does the new buffer have to be allocated, but all values have to copied from the old to the new buffer.
This method could also be used to reduce the maximum length, which would truncate values in the process.
This method does not adjust indicator buffers as these might hold values larger than the maximum length.
§Parameters
new_max_len
: New maximum element length in bytes.num_rows
: Number of valid rows currently stored in this buffer.
Sourcepub fn append(&mut self, index: usize, bytes: Option<&[u8]>)
pub fn append(&mut self, index: usize, bytes: Option<&[u8]>)
Appends a new element to the column buffer. Rebinds the buffer to increase maximum element length should the input be too large.
§Parameters
index
: Zero based index of the new row position. Must be equal to the number of rows currently in the buffer.bytes
: Value to store.
Trait Implementations§
Source§impl<'a> BoundInputSlice<'a> for BinColumn
impl<'a> BoundInputSlice<'a> for BinColumn
Source§type SliceMut = BinColumnSliceMut<'a>
type SliceMut = BinColumnSliceMut<'a>
Source§unsafe fn as_view_mut(
&'a mut self,
parameter_index: u16,
stmt: StatementRef<'a>,
) -> Self::SliceMut
unsafe fn as_view_mut( &'a mut self, parameter_index: u16, stmt: StatementRef<'a>, ) -> Self::SliceMut
Source§impl CData for BinColumn
impl CData for BinColumn
Source§fn cdata_type(&self) -> CDataType
fn cdata_type(&self) -> CDataType
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
fn indicator_ptr(&self) -> *const isize
Source§fn value_ptr(&self) -> *const c_void
fn value_ptr(&self) -> *const c_void
cdata_type
.Source§fn buffer_length(&self) -> isize
fn buffer_length(&self) -> isize
CStr
.Source§impl CDataMut for BinColumn
impl CDataMut for BinColumn
Source§fn mut_indicator_ptr(&mut self) -> *mut isize
fn mut_indicator_ptr(&mut self) -> *mut isize
Source§fn mut_value_ptr(&mut self) -> *mut c_void
fn mut_value_ptr(&mut self) -> *mut c_void
cdata_type
.