Struct odbc_api::handles::OutputStringBuffer [−][src]
pub struct OutputStringBuffer { /* fields omitted */ }
Expand description
We use this as an output buffer for strings. Allows for detecting truncation.
Implementations
Creates a new instance of an output string buffer which can hold strings up to a size of
max_str_len
characters.
Ptr to the internal buffer. Used by ODBC API calls to fill the buffer.
Length of the internal buffer in characters excluding the terminating zero.
Mutable pointer to actual output string length. Used by ODBC API calls to report truncation.
Interpret buffer as UTF16 string. Panics if no terminating zero present.
Call this method to extract string from buffer after ODBC has filled it.
True if the buffer had not been large enough to hold the string.