Struct odbc::Environment [] [src]

pub struct Environment { /* fields omitted */ }

Handle to an ODBC Environment

Creating an instance of this type is the first thing you do then using ODBC. The environment must outlive all connections created with it

Methods

impl Environment
[src]

Allocates a new ODBC Environment

Declares the Application's ODBC Version to be 3

Stores all driver description and attributes in a Vec

Stores all data source server names and descriptions in a Vec

Stores all sytem data source server names and descriptions in a Vec

Stores all user data source server names and descriptions in a Vec

Allows access to the raw ODBC handle

Allows setting attributes to Environment

Trait Implementations

impl Drop for Environment
[src]

A method called when the value goes out of scope. Read more