[][src]Trait odbc_safe::SqlStr

pub unsafe trait SqlStr {
    fn as_text_ptr(&self) -> *const SQLCHAR;
fn text_length(&self) -> SQLSMALLINT;
fn text_length_int(&self) -> SQLINTEGER; }

A type implementing this trait can be passed as a string argument in API calls

Required methods

fn as_text_ptr(&self) -> *const SQLCHAR

Returns a pointer to the start of the string

fn text_length(&self) -> SQLSMALLINT

Returns buffer length or SQL_NTS

fn text_length_int(&self) -> SQLINTEGER

Returns buffer length or SQL_NTSL

Loading content...

Implementations on Foreign Types

impl SqlStr for CStr[src]

impl SqlStr for [u8][src]

For passing a buffer without terminating NULL

impl SqlStr for str[src]

For passing a buffer without terminating NULL

Loading content...

Implementors

Loading content...