Glossary

Glossary
application
An application, as it relates to the ODBC standard, performs tasks such as: requesting a connection to a data source; sending SQL requests to a data source; processing errors; and terminating the connection to a data source. It may also perform functions outside the scope of the ODBC interface.
authentication
The process of identifying a user, typically based on a user ID and password. Authentication ensures that the user is who they claim to be. See also client authentication, OS authentication, and user ID/password authentication.
bulk load
The process of sending large numbers of rows of data to the database in a continuous stream instead of in numerous smaller database protocol packets. This process also is referred to as bulk copy.
client load balancing
Client load balancing distributes new connections in a computing environment so that no one server is overwhelmed with connection requests.
conformance
There are two types of conformance levels for ODBC drivers—ODBC API and ODBC SQL grammar (see Secure Sockets Layer (SSL)). Knowing the conformance levels helps you determine the range of functionality available through the driver, even if a particular database does not support all of the functionality of a particular level.
For ODBC API conformance, most quality ODBC drivers support Core, Level 1, and a defined set of Level 2 functions, depending on the database being accessed.
connection pooling
Connection pooling allows you to reuse connections rather than create a new one every time a driver needs to establish a connection to the database. Connection pooling manages connection sharing across different user requests to maintain performance and reduce the number of new connections that must be created.
connection retry
Connection retry defines the number of times the driver attempts to connect to the primary and, if configured, alternate database servers after the initial unsuccessful connection attempt. Connection retry can be an important strategy for system recovery.
connection string
A string passed in code that specifies connection information directly to the Driver Manager and driver.
data source
A data source includes both the source of data itself, such as relational database, a flat-file database, or even a text file, and the connection information necessary for accessing the data. Connection information may include such things as server location, database name, logon ID, and other driver options. Data source information is usually stored in a DSN (Data Source Name).
driver
An ODBC driver communicates with the application through the Driver Manager and performs tasks such as: establishing a connection to a data source; submitting requests to the data source; translating data to and from other formats; returning results to the application; and formatting errors into a standard code and returning them to the application.
Driver Manager
The main purpose of the Driver Manager is to load drivers for the application. The Driver Manager also processes ODBC initialization calls and maps data sources to a specific driver.
DSN (Data Source Name)
A DSN stores the data source information (see Data Source) necessary for the Driver Manager to connect to the database. This can be configured either through the ODBC Administrator or in a DSN file. On Windows, the information is called a system or user DSN and is stored in the Registry. Data source information can also be stored in text configuration files, as is the case on UNIX/Linux. Applications deployed in the global assembly cache must have a strong name to handle name and version conflicts.
DTC (Distributed Transaction Coordinator)
In Microsoft Windows NT, Windows 2000, Windows XP, Windows Vista, and the Windows Server 2003 family, the DTC is a system service that is part of COM+ services. COM+ components that use DTC can enlist ODBC connections in distributed transactions. This makes it possible to scale transactions from one to many computers without adding special code.
failover
Failover allows an application to connect to an alternate, or backup, database server if the primary database server is unavailable, for example, because of a hardware failure or traffic overload. DataDirect Connect Series for ODBC provides different levels of failover: connection failover, extended connection failover, and select failover.
index
A database structure used to improve the performance of database activity. A database table can have one or more indexes associated with it.
isolation level
An isolation level represents a particular locking strategy employed in the database system to improve data consistency. The higher the isolation level number, the more complex the locking strategy behind it. The isolation level provided by the database determines how a transaction handles data consistency.
The American National Standards Institute (ANSI) defines four isolation levels:
Kerberos
Kerberos is an OS authentication protocol that provides authentication using secret key cryptography. See also authentication and OS authentication.
load balancing
See client load balancing.
locking level
Locking is a database operation that restricts a user from accessing a table or record. Locking is used in situations where more than one user might try to use the same table at the same time. By locking the table or record, the system ensures that only one user at a time can affect the data.
MTS (Microsoft Transaction Server)
MTS is a component-based transaction processing system for developing, deploying, and managing high-performance, scalable, and robust enterprise, Internet, and intranet server applications. MTS was the precursor to COM+, the current version of this processing system (see DTC (Distributed Transaction Coordinator)).
ODBC Administrator
The ODBC Data Source Administrator manages database drivers and configures DSNs. On computers running the Microsoft Windows 2000, XP, Vista, or Windows 7 operating systems, this application is located in the Windows Control Panel under Administrative Tools. Its icon is named "Data Sources (ODBC)."
In Linux environments, the DataDirect Linux ODBC Data Source Administrator is located in the /tools directory of the product installation directory.
OS authentication
OS authentication can take advantage of the user name and password maintained by the operating system to authenticate users to the database or use another set of user credentials specified by the application. By allowing the database to share the user name and password used for the operating system, users with a valid operating system account can log into the database without supplying a user name and password. See also authentication and Kerberos authentication.
reauthentication
The process of switching the user associated with a connection to another user to help minimize the number of connections required in a connection pool.
Secure Sockets Layer (SSL)
SSL is an industry-standard protocol for sending encrypted data over database connections. SSL secures the integrity of your data by encrypting information and providing SSL client/SSL server authentication. See also SSL client/server authentication.
SQL Grammar
ODBC defines a core grammar that roughly corresponds to the X/Open and SQL Access Group SQL CAE specification (1992). ODBC also defines a minimum grammar, to meet a basic level of ODBC conformance, and an extended grammar, to provide for common DBMS extensions to SQL. The following list summarizes the grammar included in each conformance level:
Minimum SQL Grammar:
Core SQL Grammar:
Extended SQL Grammar:
SSL client/server authentication
SSL works by allowing the client and server to send each other encrypted data that only they can decrypt. SSL negotiates the terms of the encryption in a sequence of events known as the SSL handshake. The handshake involves the following types of authentication:
SSL client authentication is optional and requires the client to authenticate itself to the server after the server has authenticated itself to the client.
Unicode
Unicode, developed by the Unicode Consortium, is a standard that attempts to provide unique coding for all international language characters. The current number of supported characters is over 109,000.
user ID/password authentication
User ID/password authentication authenticates the user to the database using a database user name and password. See also authentication.