Crate odbc_sys

source ·
Expand description

ODBC types those representation is compatible with the ODBC C API.

This layer has not been created using automatic code generation. It is incomplete, i.e. it does not contain every symbol or constant defined in the ODBC C headers. Symbols which are deprecated since ODBC 3 have been left out intentionally. While some extra type safety has been added by grouping some of C’s #define constants into enum-types it mostly offers the same power (all) and safety guarantess(none) as the wrapped C-API. ODBC 4.0 is still under development by Microsoft, so these symbols are deactivated by default in the cargo.toml

Re-exports

  • pub use CDataType::ULong as Bookmark;

Structs

Enums

Constants

Statics

Functions

  • Allocates an environment, connection, statement, or descriptor handle.
  • Binds application data bufferst to columns in the result set.
  • Binds a buffer to a parameter marker in an SQL statement
  • SQLBrowseConnect supports an iterative method of discovering and enumerating the attributes and attribute values required to connect to a data source. Each call to SQLBrowseConnect returns successive levels of attributes and attribute values.
  • Performs bulk insertions and bulk bookmark operations, including update, delete, and fetch by bookmark.
  • Cancels the processing on a statement.
  • Cancels the processing on a connection or statement.
  • Closes a cursor that has been opened on a statement and discards pending results.
  • Returns descriptor information for a column in a result set. Descriptor information is returned as a character string, a descriptor-dependent value, or an integer value.
  • Returns descriptor information for a column in a result set. Descriptor information is returned as a character string, a descriptor-dependent value, or an integer value.
  • Returns a list of columns and associated privileges for the specified table. The driver returns the information as a result set on the specified StatementHandle.
  • Returns the list of column names in specified tables. The driver returns this information as a result set on the specified StatementHandle.
  • Returns the list of column names in specified tables. The driver returns this information as a result set on the specified StatementHandle.
  • Can be used to determine when an asynchronous function is complete using either notification- or polling-based processing.
  • SQLConnect establishes connections to a driver and a data source. The connection handle references storage of all information about the connection to the data source, including status, transaction state, and error information.
  • SQLConnect establishes connections to a driver and a data source. The connection handle references storage of all information about the connection to the data source, including status, transaction state, and error information.
  • Copies descriptor information from one descriptor handle to another.
  • Returns information about a data source. This function is implemented only by the Driver Manager.
  • Returns information about a data source. This function is implemented only by the Driver Manager.
  • Returns the result descriptor for one column in the result set — column name, type, column size, decimal digits, and nullability.
  • Returns the result descriptor for one column in the result set — column name, type, column size, decimal digits, and nullability.
  • Returns the description of a parameter marker associated with a prepared SQL statement. This information is also available in the fields of the IPD.
  • Closes the connection associated with a specific connection handle.
  • An alternative to SQLConnect. It supports data sources that require more connection information than the three arguments in SQLConnect, dialog boxes to prompt the user for all connection information, and data sources that are not defined in the system information
  • An alternative to SQLConnect. It supports data sources that require more connection information than the three arguments in SQLConnect, dialog boxes to prompt the user for all connection information, and data sources that are not defined in the system information
  • Lists driver descriptions and driver attribute keywords. This function is implemented only by the Driver Manager.
  • Lists driver descriptions and driver attribute keywords. This function is implemented only by the Driver Manager.
  • Requests a commit or rollback operation for all active operations on all statements associated with a handle.
  • Executes a preparable statement, using the current values of the parameter marker variables if any parameters exist in the statement. This is the fastest way to submit an SQL statement for one-time execution
  • Executes a preparable statement, using the current values of the parameter marker variables if any parameters exist in the statement. This is the fastest way to submit an SQL statement for one-time execution
  • Executes a prepared statement, using the current values of the parameter marker variables if any paramater markers exis in the statement.
  • SQLFetch fetches the next rowset of data from the result set and returns data for all bound columns.
  • Fetches the specified rowset of data from the result set and returns data for all bound columns. Rowsets can be specified at an absolute or relative position or by bookmark.
  • Can return:
  • Can return:
  • Frees resources associated with a specific environment, connection, statement, or descriptor handle.
  • Stops processing associated with a specific statement, closes any open cursors associated with the statement, discards pending results, or, optionally, frees all resources associated with the statement handle.
  • Returns the current setting of a connection attribute.
  • Returns the current setting of a connection attribute.
  • Returns the cursor name associated with a specified statement.
  • Returns the current setting or value of a single field of a descriptor record.
  • Returns the current settings or values of multiple fields of a descriptor record. The fields returned describe the name, data type, and storage of column or parameter data.
  • Returns the current value of a field of a record of the diagnostic data structure (associated with a specified handle) that contains error, warning, and status information.
  • Return the current values of multiple fields of a diagnostic record that contains eror, warning, and status information.
  • Return the current values of multiple fields of a diagnostic record that contains eror, warning, and status information.
  • Gets attributes that govern aspects of environments
  • Returns general information about the driver and data source associated with a connection
  • Returns general information about the driver and data source associated with a connection
  • Returns the current setting of a statement attribute.
  • Returns the current setting of a statement attribute.
  • SQLGetTypeInfo returns information about data types supported by the data source. The driver returns the information in the form of an SQL result set. The data types are intended for use in Data Definition Language (DDL) statements.
  • Determines whether more results are available on a statement containing SELECT, UPDATE, INSERT, or DELETE statements and, if so, initializes processing for those results.
  • Returns the number of parameters in an SQL statement.
  • Returns the number of columns in a result set
  • Used together with SQLPutData to supply parameter data at statement execution time, and with SQLGetData to retrieve streamed output parameter data.
  • Compiles the statement and generates an access plan.
  • Compiles the statement and generates an access plan.
  • Allows an application to send data for a parameter or column to the driver at statement execution time. This function can be used to send character or binary data values in parts to a column with a character, binary, or data source-specific data type (for example, parameters of the SQL_LONGVARBINARY or SQL_LONGVARCHAR types). SQLPutData supports binding to a Unicode C data type, even if the underlying driver does not support Unicode data.
  • Returns the number of rows affected by an UPDATE, INSERT, or DELETE statement; an SQL_ADD, SQL_UPDATE_BY_BOOKMARK, or SQL_DELETE_BY_BOOKMARK operation in SQLBulkOperations; or an SQL_UPDATE or SQL_DELETE operation in SQLSetPos.
  • Sets attributes that govern aspects of connections.
  • Sets attributes that govern aspects of connections.
  • Sets the value of a single field of a descriptor record.
  • Sets the value of a single field of a descriptor record.
  • Sets attributes that govern aspects of environments
  • Sets the cursor position in a rowset and allows an application to refresh, update or delete data in the rowset.
  • Sets attributes related to a statement.
  • Sets attributes related to a statement.
  • Returns the list of table, catalog, or schema names, and table types, stored in a specific data source. The driver returns the information as a result set
  • Returns the list of table, catalog, or schema names, and table types, stored in a specific data source. The driver returns the information as a result set
  • Use result as the indicator argument to SQLBindParameter in order to indicate that the data is send at statement execution time. In contrast to DATA_AT_EXEC the total size is passed to the driver manager.

Type Aliases

Unions