Struct odbc::Connection [] [src]

pub struct Connection<'env> { /* fields omitted */ }

Represents a connection to an ODBC data source

Methods

impl<'env> Connection<'env>
[src]

[src]

true if the data source is set to READ ONLY mode, false otherwise.

This characteristic pertains only to the data source itself; it is not characteristic of the driver that enables access to the data source. A driver that is read/write can be used with a data source that is read-only. If a driver is read-only, all of its data sources must be read-only.

[src]

Closes the connection to the data source. If not called explicitly the disconnect will be invoked implicitly by drop()

Trait Implementations

impl<'env> Handle for Connection<'env>
[src]

[src]

Returns a valid handle to the odbc type.

impl<'env> Handle for Connection<'env>
[src]

HANDLE_TYPE: HandleType = ffi::SQL_HANDLE_DBC

Used to identify the type of the handle in various functions of the ODBC C interface

[src]

Returns a ptr to the wrapped ODBC Object