[−][src]Crate odbc
ODBC
Open Database Connectivity or short ODBC is a low level high performance interface introduced by Microsoft to access relational data stores. This crate wraps the raw C interface and is intended to be usable in safe and idiomatic Rust.
[ODBC Programmer's Reference] (https://docs.microsoft.com/en-us/sql/odbc/reference/odbc-programmer-s-reference)
Internal Design
While designed as a relatively low level wrapper around ODBC this crate tries to prevent many
errors at compile time. The borrow checker and the RAII (Resource Acquisition Is
Initialization) idiom should prevent any occurrence of SQL_INVALID_HANDLE
in safe code.
Using the type system and the borrow checker this crate ensures that each method call happens in a valid state and state transitions are modeled in the type system. This should eliminate the possibility of function sequence errors in safe code.
[Basic ODBC Application Steps] (https://docs.microsoft.com/en-us/sql/odbc/reference/develop-app/basic-odbc-application-steps)
[ODBC State Transitions] (https://docs.microsoft.com/en-us/sql/odbc/reference/appendixes/appendix-b-odbc-state-transition-tables)
Re-exports
pub extern crate odbc_safe; |
pub use ResultSetState::*; |
pub use odbc_safe as safe; |
Modules
ffi | Reexport odbc-sys as ffi |
Structs
ColumnDescriptor | |
Connection | Represents a connection to an ODBC data source |
Cursor | Used to retrieve data from the fields of a query result |
DataSourceInfo | Holds name and description of a datasource |
DiagnosticRecord | ODBC Diagnostic Record |
DriverInfo | Struct holding information available on a driver. |
EncodedValue | |
Environment | Handle to an ODBC Environment |
Statement | A |
Enums
Allocated |
|
HasResult |
|
NoResult |
|
Prepared |
|
ResultSetState | Holds a |
Statics
DB_ENCODING | |
OS_ENCODING |
Traits
GetDiagRec | Allows retrieving a diagnostic record, describing errors (or lack thereof) during the last operation. |
Handle | Reflects the ability of a type to expose a valid handle |
OdbcType | |
Output | Indicates that a type can be retrieved using |
Functions
create_environment_v3 | Creates an ODBC Environment and declares specification of version 3.0 are used |
create_environment_v3_with_os_db_encoding |
Type Definitions
Executed |
|
Result | Result type returned by most functions in this crate |
SqlDate | |
SqlSsTime2 | |
SqlTime | |
SqlTimestamp | |
Version3 | Environment state used to represent that environment has been set to odbc version 3 |