Installation and Configuration of the Single-Tier "Express" Edition ODBC Driver for Oracle Data Sources, for Windows


Review Preinstallation Documentation: Pre-Installation Requirements




Installation

  1. The OpenLink ODBC Driver for Oracle (Express Edition) is distributed as a Windows MSI installer. Double click on the installer 'ntl6eora.msi' to commence the installation:
  2. This is the Welcome dialog for the OpenLink ODBC Driver for Oracle (Express Edition):





  3. Please read the Software License Agreement and accept before continuing your installation:





  4. Before installation, you will be prompted for a license file. If a license file already exists on the machine, select the 'use existing file' option. A trial (try) or full (buy) license can be obtained by selecting the 'try and buy' option, which loads our online try and buy web page:
  5. To obtain the trial license, you must be a registered user on the OpenLink Web site and login with the username (e-mail address) and password for that user. Click on the 'Shop' link to visit our online shop cart to purchase a full license if required.





  6. Click on the 'download license' button to obtain an immediate license file and save it to your desktop. Alternatively, mail can be sent to your e-mail address with a link to your OpenLink Data Space (ODS). Here, all trial and full license files will be stored in a specialized Briefcase for download at a later date.





  7. Select the license file to be used for the installation:





  8. Choose to perform a custom, typical, or complete installation of the driver:





  9. Select the features to be installed:





  10. Click the install button to begin the installation:





  11. Installation in progress:





  12. The installation is complete and ready for use:




Configuration

  1. Launch the ODBC Administrator appropriate to the bitness (32-bit or 64-bit) of your client application and driver.





  2. Click on the Drivers tab to confirm that the driver has been successfully installed:
  3. From either the User or System DSN tab, click on the Add button and select the Express Edition Driver from the list. Select the Unicode version of the driver if and only if you are working with multi-byte character sets, as unnecessary translations can significantly affect ODBC performance:





  4. On the Data Source tab, provide a suitable DSN name and optional description for the Data Source to be created:





  5. The Connection Tab requests the minimum parameters required to make a connection to the target database:





    • Host: This is the fully qualified hostname, or IP address, of the machine hosting the DBMS you wish to access, e.g., dbms-server.example.com or 192.168.155.123. Any hostname which can be resolved by your local DNS is acceptable.
    • Port: This is the port on which Oracle is listening.
    • SID: An Oracle System Identifier.
    • Connect now to verify that all settings are correct: Will attempt to connect to the database, once you click Continue.
    • Login ID: This is a valid user for the Oracle Database.
    • Password: This is a valid password for the Oracle Database.
  6. The advanced button displays additional, optional parameters that can be configured:





    Name Description
    NetworkProtocol Set the network protocol for the connections. Default is 'tcp'. Can be set to any protocol Net8 supports. Only needed for JDBC OCI driver. Not used with OpenLink Express Edition ODBC driver.
    MaxStatements Specifies the value of the maxStatements property. This will be the size of the application cache (which will be used by both implicit and explicit caching).
    ImplicitCachingEnabled Sets the value of the implicitCachingEnabled property, which enables or disables the implicit cache. Note that this is independent of the cache size, set with setMaxStatements().
    ExplicitCachingEnabled Sets the value of the explicitCachingEnabled property, which enables or disables the explicit cache. Note that this is independent of the cache size, set with setMaxStatements().

  7. Click Next to proceed to the Options dialog. This dialog contains optional parameters that are not required for basic ODBC connectivity:





    • Drop Catalog from Meta calls - Enable this option to have the catalog name not appear for tables, views, or procedures when requesting database meta-data.
    • Drop Schema from Meta calls - Enable this option to have the schema name not appear for tables, views, or procedures when requesting database meta-data.
    • Return an empty ResultSet for SQLStatistics - Check this box to have SQLStatistics() return an empty result set. Use this if the underlying database does not support retrieval of statistics about a table (e.g., what indexes it has).
    • Disable support of quoted identifier - If set, the SQLGetInfo(SQL_IDENTIFIER_QUOTE_CHAR) call will return a space (" "). It can be used if the DBMS doesn't support quoted SQL like SELECT * FROM "account".
    • Disable support of search string escape - If set, the SQLGetInfo(SQL_LIKE_ESCAPE_CLAUSE) call will return a space (" "). It can be used if the DBMS doesn't support SQL escape patterns.
    • Patch null size of SQL_CHAR on - If set, this option overrides the size of SQL_CHAR column type returned by the database with the value set in the text box (in bytes). Set to 0 (the default) to use the size returned by the database.
  8. Click Next to proceed to the Preferences dialog. This dialog contains optional parameters that are not required for basic ODBC connectivity:





    • Read-only connection - Specifies whether the connection is "Read-only." Make sure the checkbox is unchecked to request a "Read/Write" connection.
    • Defer fetching of long data - Defers fetching of LONG (BINARY, BLOB, CLOB, TEXT, etc.) data unless explicitly requested in a query. This provides significant performance increases when fields in query do not include LONG data fields.
    • Disable interactive login - Suppresses the ODBC "Username" and "Password" login dialog boxes when interacting with your ODBC DSN from within an ODBC compliant application.
    • Row Buffer Size - This attribute specifies the number of records to be transported over the network in a single network hop. Values can range from 1 to 999.
    • Max Rows Override - Allows you to define a limit on the maximum number of rows to be returned from a query. The default value of 0 means no limit.
    • Initial SQL - Lets you specify a file containing SQL statements that will be run automatically against the database upon connection.
    • Dynamic Cursor Sensitivity - Enables or disables the row version cache used with dynamic cursors. When dynamic cursor sensitivity is set high, the Cursor Library calculates checksums for each row in the current rowset and compares these with the checksums (if any) already stored in the row version cache for the same rows when fetched previously. If the checksums differ for a row, the row has been updated since it was last fetched and the row status flag is set to SQL_ROW_UPDATED. The row version cache is then updated with the latest checksums for the rowset. From the user's point of view, the only visible difference between the two sensitivity settings is that a row status flag can never be set to SQL_ROW_UPDATED when the cursor sensitivity is low. (The row status is instead displayed as SQL_ROW_SUCCESS.) In all other respects, performance aside, the two settings are the same. Deleted rows don't appear in the rowset. Updates to the row since the row was last fetched are reflected in the row data, and inserted rows appear in the rowset, if their keys fall within the span of the rowset. If your application does not need to detect the row status SQL_ROW_UPDATED, you should leave the High Cursor Sensitivity checkbox unchecked, as performance is improved. The calculation and comparison of checksums for each row fetched carries an overhead. Before enabling this option, the table oplrvc must be created using the appropriate script for the target database.
    • Enable logging to the log file - Pass the full path to an arbitrary log file that will be used to log ODBC API and SQL related errors.
  9. Click Next to continue to the Compatibility dialog . The Compatibility dialog enables you to set additional parameters to enhance compatibility with applications:





    • Disable AutoCommit - Changes the default commit behavior of the OpenLink driver. The default mode is AutoCommit (box unchecked).
    • Disable Rowset Size Limit - Disables a limitation enforced by the cursor library. This limitation is enforced by default. It prevents the driver from claiming all available memory in the event that a resultset generated from an erroneous query is very large. The limit is normally never reached.
    • Multiple Active Statements Emulation - Enables use of Multiple Active Statements in an ODBC application even if the underlying database does not allow this, by emulation within the driver.
    • SQL_DBMS Name - Manually overrides the SQLGetInfo(SQL_DBMS_NAME) response returned by the driver. This is required for products like Microsoft InfoPath for which the value must be "SQL Server".
  10. Click Next to continue.
  11. Click on the Test Data Source button to verify that a successful connection can be made to the database.





  12. You have established a connection:





Next...