pub enum InfoType {
Show 45 variants SQL_MAX_DRIVER_CONNECTIONS, SQL_MAX_CONCURRENT_ACTIVITIES, SQL_DATA_SOURCE_NAME, SQL_SERVER_NAME, SQL_SEARCH_PATTERN_ESCAPE, SQL_DBMS_NAME, SQL_DBMS_VER, SQL_ACCESSIBLE_TABLES, SQL_ACCESSIBLE_PROCEDURES, SQL_CURSOR_COMMIT_BEHAVIOR, SQL_DATA_SOURCE_READ_ONLY, SQL_DEFAULT_TXN_ISOLATION, SQL_IDENTIFIER_CASE, SQL_IDENTIFIER_QUOTE_CHAR, SQL_MAX_COLUMN_NAME_LEN, SQL_MAX_CURSOR_NAME_LEN, SQL_MAX_SCHEMA_NAME_LEN, SQL_MAX_CATALOG_NAME_LEN, SQL_MAX_TABLE_NAME_LEN, SQL_TRANSACTION_CAPABLE, SQL_USER_NAME, SQL_TRANSACTION_ISOLATION_OPTION, SQL_INTEGRITY, SQL_GETDATA_EXTENSIONS, SQL_NULL_COLLATION, SQL_ALTER_TABLE, SQL_ORDER_BY_COLUMNS_IN_SELECT, SQL_SPECIAL_CHARACTERS, SQL_MAX_COLUMNS_IN_GROUP_BY, SQL_MAX_COLUMNS_IN_INDEX, SQL_MAX_COLUMNS_IN_ORDER_BY, SQL_MAX_COLUMNS_IN_SELECT, SQL_MAX_COLUMNS_IN_TABLE, SQL_MAX_INDEX_SIZE, SQL_MAX_ROW_SIZE, SQL_MAX_STATEMENT_LEN, SQL_MAX_TABLES_IN_SELECT, SQL_MAX_USER_NAME_LEN, SQL_OUTER_JOIN_CAPABILITIES, SQL_XOPEN_CLI_YEAR, SQL_CURSOR_SENSITIVITY, SQL_DESCRIBE_PARAMETER, SQL_CATALOG_NAME, SQL_COLLATION_SEQ, SQL_MAX_IDENTIFIER_LEN,
}
Expand description

Information requested by SQLGetInfo

Variants§

§

SQL_MAX_DRIVER_CONNECTIONS

§

SQL_MAX_CONCURRENT_ACTIVITIES

§

SQL_DATA_SOURCE_NAME

§

SQL_SERVER_NAME

§

SQL_SEARCH_PATTERN_ESCAPE

§

SQL_DBMS_NAME

§

SQL_DBMS_VER

§

SQL_ACCESSIBLE_TABLES

§

SQL_ACCESSIBLE_PROCEDURES

§

SQL_CURSOR_COMMIT_BEHAVIOR

§

SQL_DATA_SOURCE_READ_ONLY

§

SQL_DEFAULT_TXN_ISOLATION

§

SQL_IDENTIFIER_CASE

§

SQL_IDENTIFIER_QUOTE_CHAR

§

SQL_MAX_COLUMN_NAME_LEN

§

SQL_MAX_CURSOR_NAME_LEN

§

SQL_MAX_SCHEMA_NAME_LEN

§

SQL_MAX_CATALOG_NAME_LEN

§

SQL_MAX_TABLE_NAME_LEN

§

SQL_TRANSACTION_CAPABLE

§

SQL_USER_NAME

§

SQL_TRANSACTION_ISOLATION_OPTION

§

SQL_INTEGRITY

§

SQL_GETDATA_EXTENSIONS

§

SQL_NULL_COLLATION

§

SQL_ALTER_TABLE

§

SQL_ORDER_BY_COLUMNS_IN_SELECT

§

SQL_SPECIAL_CHARACTERS

§

SQL_MAX_COLUMNS_IN_GROUP_BY

§

SQL_MAX_COLUMNS_IN_INDEX

§

SQL_MAX_COLUMNS_IN_ORDER_BY

§

SQL_MAX_COLUMNS_IN_SELECT

§

SQL_MAX_COLUMNS_IN_TABLE

§

SQL_MAX_INDEX_SIZE

§

SQL_MAX_ROW_SIZE

§

SQL_MAX_STATEMENT_LEN

§

SQL_MAX_TABLES_IN_SELECT

§

SQL_MAX_USER_NAME_LEN

§

SQL_OUTER_JOIN_CAPABILITIES

§

SQL_XOPEN_CLI_YEAR

§

SQL_CURSOR_SENSITIVITY

§

SQL_DESCRIBE_PARAMETER

§

SQL_CATALOG_NAME

§

SQL_COLLATION_SEQ

§

SQL_MAX_IDENTIFIER_LEN

Trait Implementations§

§

impl Clone for InfoType

§

fn clone(&self) -> InfoType

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Debug for InfoType

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl PartialEq<InfoType> for InfoType

§

fn eq(&self, other: &InfoType) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Copy for InfoType

§

impl Eq for InfoType

§

impl StructuralEq for InfoType

§

impl StructuralPartialEq for InfoType

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToErrorNoContext<T> for T

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<E, C> WrapContext<C> for E

§

type ContextError = ErrorContext<E, C>

source§

fn wrap_context(self, context: C) -> ErrorContext<E, C>