. . . "
    \r\n
  1. Open the \"ODBC Data Sources\" Application.
  2. \r\n
  3. \r\n
      \r\n
    • 64-bit drivers should be configured with the 64-bit Application.
    • \r\n
    • 32-bit drivers should be configured with the 32-bit Application.
    • \r\n
    \r\n
  4. \r\n
  5. Select the System DSN tab, then click Add.
  6. \r\n
  7. \r\n
      \r\n
    • Select the OpenLink \"Lite\" Driver for JDBC Data Sources from the list of available drivers. 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.
    • \r\n
    \r\n
  8. \r\n
  9. Click Finish.
  10. \r\n
  11. \"The first dialog prompts for a Data Source Name and optional description.
  12. \r\n
  13. Click Next.\"
  14. \r\n
  15. \"The second dialog prompts for information that identifies the Microsoft SQL Server DBMS and database. It also provides a checkbox that allows you to check your basic connection parameters before setting advanced and optional settings.\r\n
      \r\n
    • Server Name - Select the drop-down list box to invoke the driver's Dynamic discovery of Microsoft SQL Server instance on the network and choose the required instance, if listed.
    • \r\n
    • Connect now to verify that all settings are correct - Will attempt to connect to the database once you click Continue.
    • \r\n
    • Login ID - A valid Microsoft SQL Server username
    • \r\n
    • Password - A valid Microsoft SQL Server password
    • \r\n
    • Use the Advanced button to manually configure a connection if the Microsoft SQL Server instance could not be dynamically located, as detailed below.
    • \r\n
    • ServerType - An OpenLink proprietary parameter that associates the connection with a particular TDS version.
    • \r\n
    • Hostname - The hostname or IP address on which Microsoft SQL Server listens
    • \r\n
    • Port number - The TCP port on which Microsoft SQL Server lists
    • \r\n
    • Server Name - Microsoft SQL Server instance name on the specified host. A Microsoft SQL Server instance can also be specified by appending \"\\InstanceName\" to the ServerName, i.e., \"ServerName\\InstanceName\"
    • \r\n
    • Mirror Host - The name of the Failover Server hosting the mirrored database if configured
    • \r\n
    • Use strong encryption of data - Enable SSL encryption of data between driver and database
    • \r\n
    • Use Mars - Multiple Active Result Sets enables the concurrent processing of multiple statements/queries and/or result sets on a single connection
    • \r\n
    • Verify Server Certificate - Verify the Database Server SSL certificate against the one specified in the \"CA file\" field
    • \r\n
    • CA file - Specify the location of a Valid SSL Certificate for use during the connection
    • \r\n
    \r\n
  16. \r\n
  17. Click Next.
  18. \r\n
  19. \"The third dialog takes a combination of database-specific and optional parameters.\r\n
      \r\n
    • Database - The Microsoft SQL Server database
    • \r\n
    • Character set - The client application's character set (8-bit only; the Unicode driver always returns UCS-2 on Windows).
    • \r\n
    • Language - The language you want error messages returned in; must be supported by the target server.
    • \r\n
    • Packet Size - A value that determines the number of bytes per network packet transferred from the database server to the client. The correct setting of this attribute can improve performance. When set to 0, the initial default, the driver uses the default packet size as specified in the Microsoft SQL Server configuration. When set to -1, the driver computes the maximum allowable packet size on the first connect to the data source and saves the value in the system information. When set to x, an integer from 1 to 10, which indicates a multiple of 512 bytes (for example, Packet Size of 6 means to set the packet size to 6 * 512 equal 3072 bytes). For you to take advantage of this connection attribute, you must configure the System 10 server for a maximum network packet size greater than or equal to the value you specified for Packet Size.
    • \r\n
    • Prepare Method - This option is specific to the TDS-based driver for Sybase & Microsoft SQL Server SQL Servers. It can take the values None, Partial, or Full (connectoptions = -O [0, 1, 2] respectively). It is used to determine whether stored procedures are created on the server for calls to SQLPrepare.
    • \r\n
    • No Quoted Identifiers - This option indicates that the underlying driver does not support quoted identifiers, which is required for Jet engine-based products like MS Access.
    • \r\n
    • Use ANSI nulls, padding and warnings - This option affects TDS agent & Lite Driver connections to Microsoft SQL Server databases. Sybase connectivity is not affected.
    • \r\n
    • Map Serializable to Snapshot isolation level - Enable Snapshot transaction isolation level in the driver. Snapshot Isolation is a new transaction isolation level available in Microsoft SQL Server 2005.
    • \r\n
    \r\n
  20. \r\n
  21. Click Next.
  22. \r\n
  23. \"The fourth dialog enables you to set optional ODBC connection parameters.\r\n
      \r\n
    • Read-only connection \u2014 Specifies whether the connection is \"Read-only.\" Must be unchecked to INSERT, UPDATE, or DELETE records, and to run some Stored Procedures including some built-in functions.
    • \r\n
    • Defer fetching of long data \u2014 Defers fetching of LONG (BINARY, BLOB, etc.) fields in wildcard queries. This provides significant performance increases when fields in query do not include LONG data fields.
    • \r\n
    • Disable interactive login \u2014 Suppresses the ODBC \"Username\" and \"Password\" login dialog boxes when interacting with your ODBC DSN from within an ODBC compliant application.
    • \r\n
    • Row Buffer Size \u2014 This attribute specifies the number of records to be delivered from the driver to the client application in a single batch. Values can range from 1 to 999.
    • \r\n
    • Max Rows Override \u2014 Allows you to set a limit for the maximum number of rows to be returned from a query. The default value of 0 means no limit.
    • \r\n
    • Initial SQL \u2014 Lets you specify a file containing SQL statements that will be run automatically against the database upon connection.
    • \r\n
    • Dynamic Cursor Sensitivity \u2014 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 carry an overhead. If this option is enabled, the table oplrvc must have been created beforehand using the appropriate script for the target database.
    • \r\n
    • Enable logging to the log file \u2014 Check the checkbox and use the associated textbox to provide the full path to a file in which to log diagnostic information.
    • \r\n
    \r\n
  24. \r\n
  25. Click Next.
  26. \r\n
  27. \"The fifth dialog enables you to set additional parameters to enhance compatibility with applications.\r\n
      \r\n
    • Enable Microsoft Jet engine options \u2014 Facilitates the translation of certain data types for the Microsoft Jet Engine. If you notice that money and other data types are mishandled with Microsoft or other applications, test with Jet fix enabled.
    • \r\n
    • Disable Autocommit \u2014 Changes the commit behavior of the OpenLink driver. The default mode is AutoCommit (box unchecked).
    • \r\n
    • Disable rowset size limit \u2014 Disables a limitation enforced by the cursor library. This limitation is enforced by default. It prevents the driver from claiming all available memory when a resultset (typically generated by an accidental query) is very large. The limit is not normally reached.
    • \r\n
    • Multiple Active Statements Emulation \u2014 Enables the use of Multiple Active statements in an ODBC application even if the underlying database does not allow this, by emulation within the driver.
    • \r\n
    • SQL_DBMS Name \u2014 Manually overrides the SQLGetInfo(SQL_DBMS_NAME) response returned by the driver. This is required for products like Microsoft InfoPath for which the value should be \"SQL Server\".
    • \r\n
    \r\n
  28. \r\n
  29. Click Next.
  30. \r\n
  31. The final dialog enables you to test your Data Source. Click the Test Data Source button.
  32. \r\n
" . . . . "Data Source Name Configuration Guide" . . . . "
    \n
  1. Open the \"ODBC Data Sources\" Application.
  2. \n
  3. \n
      \n
    • 64-bit drivers should be configured with the 64-bit Application.
    • \n
    • 32-bit drivers should be configured with the 32-bit Application.
    • \n
    \n
  4. \n
  5. Select the System DSN tab, then click Add.
  6. \n
  7. \n
      \n
    • Select the OpenLink \"Lite\" Driver for MySQL Data Sources from the list of available drivers. 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.
    • \n
    \n
  8. \n
  9. Click Finish.
  10. \n
  11. \"The first dialog prompts for a Data Source Name and optional description.
  12. \n
  13. Click Next.\"
  14. \n
  15. \"The second dialog prompts for information that identifies the Microsoft SQL Server DBMS and database. It also provides a checkbox that allows you to check your basic connection parameters before setting advanced and optional settings.\n
      \n
    • Server Name - Select the drop-down list box to invoke the driver's Dynamic discovery of Microsoft SQL Server instance on the network and choose the required instance, if listed.
    • \n
    • Connect now to verify that all settings are correct - Will attempt to connect to the database once you click Continue.
    • \n
    • Login ID - A valid Microsoft SQL Server username
    • \n
    • Password - A valid Microsoft SQL Server password
    • \n
    • Use the Advanced button to manually configure a connection if the Microsoft SQL Server instance could not be dynamically located, as detailed below.
    • \n
    • ServerType - An OpenLink proprietary parameter that associates the connection with a particular TDS version.
    • \n
    • Hostname - The hostname or IP address on which Microsoft SQL Server listens
    • \n
    • Port number - The TCP port on which Microsoft SQL Server lists
    • \n
    • Server Name - Microsoft SQL Server instance name on the specified host. A Microsoft SQL Server instance can also be specified by appending \"\\InstanceName\" to the ServerName, i.e., \"ServerName\\InstanceName\"
    • \n
    • Mirror Host - The name of the Failover Server hosting the mirrored database if configured
    • \n
    • Use strong encryption of data - Enable SSL encryption of data between driver and database
    • \n
    • Use Mars - Multiple Active Result Sets enables the concurrent processing of multiple statements/queries and/or result sets on a single connection
    • \n
    • Verify Server Certificate - Verify the Database Server SSL certificate against the one specified in the \"CA file\" field
    • \n
    • CA file - Specify the location of a Valid SSL Certificate for use during the connection
    • \n
    \n
  16. \n
  17. Click Next.
  18. \n
  19. \"The third dialog takes a combination of database-specific and optional parameters.\n
      \n
    • Database - The Microsoft SQL Server database
    • \n
    • Character set - The client application's character set (8-bit only; the Unicode driver always returns UCS-2 on Windows).
    • \n
    • Language - The language you want error messages returned in; must be supported by the target server.
    • \n
    • Packet Size - A value that determines the number of bytes per network packet transferred from the database server to the client. The correct setting of this attribute can improve performance. When set to 0, the initial default, the driver uses the default packet size as specified in the Microsoft SQL Server configuration. When set to -1, the driver computes the maximum allowable packet size on the first connect to the data source and saves the value in the system information. When set to x, an integer from 1 to 10, which indicates a multiple of 512 bytes (for example, Packet Size of 6 means to set the packet size to 6 * 512 equal 3072 bytes). For you to take advantage of this connection attribute, you must configure the System 10 server for a maximum network packet size greater than or equal to the value you specified for Packet Size.
    • \n
    • Prepare Method - This option is specific to the TDS-based driver for Sybase & Microsoft SQL Server SQL Servers. It can take the values None, Partial, or Full (connectoptions = -O [0, 1, 2] respectively). It is used to determine whether stored procedures are created on the server for calls to SQLPrepare.
    • \n
    • No Quoted Identifiers - This option indicates that the underlying driver does not support quoted identifiers, which is required for Jet engine-based products like MS Access.
    • \n
    • Use ANSI nulls, padding and warnings - This option affects TDS agent & Lite Driver connections to Microsoft SQL Server databases. Sybase connectivity is not affected.
    • \n
    • Map Serializable to Snapshot isolation level - Enable Snapshot transaction isolation level in the driver. Snapshot Isolation is a new transaction isolation level available in Microsoft SQL Server 2005.
    • \n
    \n
  20. \n
  21. Click Next.
  22. \n
  23. \"The fourth dialog enables you to set optional ODBC connection parameters.\n
      \n
    • Read-only connection \u2014 Specifies whether the connection is \"Read-only.\" Must be unchecked to INSERT, UPDATE, or DELETE records, and to run some Stored Procedures including some built-in functions.
    • \n
    • Defer fetching of long data \u2014 Defers fetching of LONG (BINARY, BLOB, etc.) fields in wildcard queries. This provides significant performance increases when fields in query do not include LONG data fields.
    • \n
    • Disable interactive login \u2014 Suppresses the ODBC \"Username\" and \"Password\" login dialog boxes when interacting with your ODBC DSN from within an ODBC compliant application.
    • \n
    • Row Buffer Size \u2014 This attribute specifies the number of records to be delivered from the driver to the client application in a single batch. Values can range from 1 to 999.
    • \n
    • Max Rows Override \u2014 Allows you to set a limit for the maximum number of rows to be returned from a query. The default value of 0 means no limit.
    • \n
    • Initial SQL \u2014 Lets you specify a file containing SQL statements that will be run automatically against the database upon connection.
    • \n
    • Dynamic Cursor Sensitivity \u2014 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 carry an overhead. If this option is enabled, the table oplrvc must have been created beforehand using the appropriate script for the target database.
    • \n
    • Enable logging to the log file \u2014 Check the checkbox and use the associated textbox to provide the full path to a file in which to log diagnostic information.
    • \n
    \n
  24. \n
  25. Click Next.
  26. \n
  27. \"The fifth dialog enables you to set additional parameters to enhance compatibility with applications.\n
      \n
    • Enable Microsoft Jet engine options \u2014 Facilitates the translation of certain data types for the Microsoft Jet Engine. If you notice that money and other data types are mishandled with Microsoft or other applications, test with Jet fix enabled.
    • \n
    • Disable Autocommit \u2014 Changes the commit behavior of the OpenLink driver. The default mode is AutoCommit (box unchecked).
    • \n
    • Disable rowset size limit \u2014 Disables a limitation enforced by the cursor library. This limitation is enforced by default. It prevents the driver from claiming all available memory when a resultset (typically generated by an accidental query) is very large. The limit is not normally reached.
    • \n
    • Multiple Active Statements Emulation \u2014 Enables the use of Multiple Active statements in an ODBC application even if the underlying database does not allow this, by emulation within the driver.
    • \n
    • SQL_DBMS Name \u2014 Manually overrides the SQLGetInfo(SQL_DBMS_NAME) response returned by the driver. This is required for products like Microsoft InfoPath for which the value should be \"SQL Server\".
    • \n
    \n
  28. \n
  29. Click Next.
  30. \n
  31. The final dialog enables you to test your Data Source. Click the Test Data Source button.
  32. \n
" . "Lite Edition (Single-Tier) ODBC Driver for SQL Server Data Source Name (DSN) Configuration for Windows" . "Lite Edition (Single-Tier) ODBC Driver for SQL Server Data Source Name (DSN) Configuration for Windows" . . "ODBC Driver for SQL Server Data Source Name (DSN) Configuration for Windows" . . . "
    \r\n
  1. Open the \"ODBC Data Sources\" Application.
  2. \r\n
  3. \r\n
      \r\n
    • 64-bit drivers should be configured with the 64-bit Application.
    • \r\n
    • 32-bit drivers should be configured with the 32-bit Application.
    • \r\n
    \r\n
  4. \r\n
  5. Select the System DSN tab, then click Add.
  6. \r\n
  7. \r\n
      \r\n
    • Select the OpenLink \"Lite\" Driver for MySQL Data Sources from the list of available drivers. 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.
    • \r\n
    \r\n
  8. \r\n
  9. Click Finish.
  10. \r\n
  11. \"The first dialog prompts for a Data Source Name and optional description.
  12. \r\n
  13. Click Next.\"
  14. \r\n
  15. \"The second dialog prompts for information that identifies the Microsoft SQL Server DBMS and database. It also provides a checkbox that allows you to check your basic connection parameters before setting advanced and optional settings.\r\n
      \r\n
    • Server Name - Select the drop-down list box to invoke the driver's Dynamic discovery of Microsoft SQL Server instance on the network and choose the required instance, if listed.
    • \r\n
    • Connect now to verify that all settings are correct - Will attempt to connect to the database once you click Continue.
    • \r\n
    • Login ID - A valid Microsoft SQL Server username
    • \r\n
    • Password - A valid Microsoft SQL Server password
    • \r\n
    • Use the Advanced button to manually configure a connection if the Microsoft SQL Server instance could not be dynamically located, as detailed below.
    • \r\n
    • ServerType - An OpenLink proprietary parameter that associates the connection with a particular TDS version.
    • \r\n
    • Hostname - The hostname or IP address on which Microsoft SQL Server listens
    • \r\n
    • Port number - The TCP port on which Microsoft SQL Server lists
    • \r\n
    • Server Name - Microsoft SQL Server instance name on the specified host. A Microsoft SQL Server instance can also be specified by appending \"\\InstanceName\" to the ServerName, i.e., \"ServerName\\InstanceName\"
    • \r\n
    • Mirror Host - The name of the Failover Server hosting the mirrored database if configured
    • \r\n
    • Use strong encryption of data - Enable SSL encryption of data between driver and database
    • \r\n
    • Use Mars - Multiple Active Result Sets enables the concurrent processing of multiple statements/queries and/or result sets on a single connection
    • \r\n
    • Verify Server Certificate - Verify the Database Server SSL certificate against the one specified in the \"CA file\" field
    • \r\n
    • CA file - Specify the location of a Valid SSL Certificate for use during the connection
    • \r\n
    \r\n
  16. \r\n
  17. Click Next.
  18. \r\n
  19. \"The third dialog takes a combination of database-specific and optional parameters.\r\n
      \r\n
    • Database - The Microsoft SQL Server database
    • \r\n
    • Character set - The client application's character set (8-bit only; the Unicode driver always returns UCS-2 on Windows).
    • \r\n
    • Language - The language you want error messages returned in; must be supported by the target server.
    • \r\n
    • Packet Size - A value that determines the number of bytes per network packet transferred from the database server to the client. The correct setting of this attribute can improve performance. When set to 0, the initial default, the driver uses the default packet size as specified in the Microsoft SQL Server configuration. When set to -1, the driver computes the maximum allowable packet size on the first connect to the data source and saves the value in the system information. When set to x, an integer from 1 to 10, which indicates a multiple of 512 bytes (for example, Packet Size of 6 means to set the packet size to 6 * 512 equal 3072 bytes). For you to take advantage of this connection attribute, you must configure the System 10 server for a maximum network packet size greater than or equal to the value you specified for Packet Size.
    • \r\n
    • Prepare Method - This option is specific to the TDS-based driver for Sybase & Microsoft SQL Server SQL Servers. It can take the values None, Partial, or Full (connectoptions = -O [0, 1, 2] respectively). It is used to determine whether stored procedures are created on the server for calls to SQLPrepare.
    • \r\n
    • No Quoted Identifiers - This option indicates that the underlying driver does not support quoted identifiers, which is required for Jet engine-based products like MS Access.
    • \r\n
    • Use ANSI nulls, padding and warnings - This option affects TDS agent & Lite Driver connections to Microsoft SQL Server databases. Sybase connectivity is not affected.
    • \r\n
    • Map Serializable to Snapshot isolation level - Enable Snapshot transaction isolation level in the driver. Snapshot Isolation is a new transaction isolation level available in Microsoft SQL Server 2005.
    • \r\n
    \r\n
  20. \r\n
  21. Click Next.
  22. \r\n
  23. \"The fourth dialog enables you to set optional ODBC connection parameters.\r\n
      \r\n
    • Read-only connection \u2014 Specifies whether the connection is \"Read-only.\" Must be unchecked to INSERT, UPDATE, or DELETE records, and to run some Stored Procedures including some built-in functions.
    • \r\n
    • Defer fetching of long data \u2014 Defers fetching of LONG (BINARY, BLOB, etc.) fields in wildcard queries. This provides significant performance increases when fields in query do not include LONG data fields.
    • \r\n
    • Disable interactive login \u2014 Suppresses the ODBC \"Username\" and \"Password\" login dialog boxes when interacting with your ODBC DSN from within an ODBC compliant application.
    • \r\n
    • Row Buffer Size \u2014 This attribute specifies the number of records to be delivered from the driver to the client application in a single batch. Values can range from 1 to 999.
    • \r\n
    • Max Rows Override \u2014 Allows you to set a limit for the maximum number of rows to be returned from a query. The default value of 0 means no limit.
    • \r\n
    • Initial SQL \u2014 Lets you specify a file containing SQL statements that will be run automatically against the database upon connection.
    • \r\n
    • Dynamic Cursor Sensitivity \u2014 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 carry an overhead. If this option is enabled, the table oplrvc must have been created beforehand using the appropriate script for the target database.
    • \r\n
    • Enable logging to the log file \u2014 Check the checkbox and use the associated textbox to provide the full path to a file in which to log diagnostic information.
    • \r\n
    \r\n
  24. \r\n
  25. Click Next.
  26. \r\n
  27. \"The fifth dialog enables you to set additional parameters to enhance compatibility with applications.\r\n
      \r\n
    • Enable Microsoft Jet engine options \u2014 Facilitates the translation of certain data types for the Microsoft Jet Engine. If you notice that money and other data types are mishandled with Microsoft or other applications, test with Jet fix enabled.
    • \r\n
    • Disable Autocommit \u2014 Changes the commit behavior of the OpenLink driver. The default mode is AutoCommit (box unchecked).
    • \r\n
    • Disable rowset size limit \u2014 Disables a limitation enforced by the cursor library. This limitation is enforced by default. It prevents the driver from claiming all available memory when a resultset (typically generated by an accidental query) is very large. The limit is not normally reached.
    • \r\n
    • Multiple Active Statements Emulation \u2014 Enables the use of Multiple Active statements in an ODBC application even if the underlying database does not allow this, by emulation within the driver.
    • \r\n
    • SQL_DBMS Name \u2014 Manually overrides the SQLGetInfo(SQL_DBMS_NAME) response returned by the driver. This is required for products like Microsoft InfoPath for which the value should be \"SQL Server\".
    • \r\n
    \r\n
  28. \r\n
  29. Click Next.
  30. \r\n
  31. The final dialog enables you to test your Data Source. Click the Test Data Source button.
  32. \r\n
" . . . . . . . . . "
    \n
  1. Open the \"ODBC Data Sources\" Application.
  2. \n
  3. \n
      \n
    • 64-bit drivers should be configured with the 64-bit Application.
    • \n
    • 32-bit drivers should be configured with the 32-bit Application.
    • \n
    \n
  4. \n
  5. Select the System DSN tab, then click Add.
  6. \n
  7. \n
      \n
    • Select the OpenLink \"Lite\" Driver for MySQL Data Sources from the list of available drivers. 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.
    • \n
    \n
  8. \n
  9. Click Finish.
  10. \n
  11. \"The first dialog prompts for a Data Source Name and optional description.
  12. \n
  13. Click Next.\"
  14. \n
  15. \"The second dialog prompts for information that identifies the Microsoft SQL Server DBMS and database. It also provides a checkbox that allows you to check your basic connection parameters before setting advanced and optional settings.\n
      \n
    • Server Name - Select the drop-down list box to invoke the driver's Dynamic discovery of Microsoft SQL Server instance on the network and choose the required instance, if listed.
    • \n
    • Connect now to verify that all settings are correct - Will attempt to connect to the database once you click Continue.
    • \n
    • Login ID - A valid Microsoft SQL Server username
    • \n
    • Password - A valid Microsoft SQL Server password
    • \n
    • Use the Advanced button to manually configure a connection if the Microsoft SQL Server instance could not be dynamically located, as detailed below.
    • \n
    • ServerType - An OpenLink proprietary parameter that associates the connection with a particular TDS version.
    • \n
    • Hostname - The hostname or IP address on which Microsoft SQL Server listens
    • \n
    • Port number - The TCP port on which Microsoft SQL Server lists
    • \n
    • Server Name - Microsoft SQL Server instance name on the specified host. A Microsoft SQL Server instance can also be specified by appending \"\\InstanceName\" to the ServerName, i.e., \"ServerName\\InstanceName\"
    • \n
    • Mirror Host - The name of the Failover Server hosting the mirrored database if configured
    • \n
    • Use strong encryption of data - Enable SSL encryption of data between driver and database
    • \n
    • Use Mars - Multiple Active Result Sets enables the concurrent processing of multiple statements/queries and/or result sets on a single connection
    • \n
    • Verify Server Certificate - Verify the Database Server SSL certificate against the one specified in the \"CA file\" field
    • \n
    • CA file - Specify the location of a Valid SSL Certificate for use during the connection
    • \n
    \n
  16. \n
  17. Click Next.
  18. \n
  19. \"The third dialog takes a combination of database-specific and optional parameters.\n
      \n
    • Database - The Microsoft SQL Server database
    • \n
    • Character set - The client application's character set (8-bit only; the Unicode driver always returns UCS-2 on Windows).
    • \n
    • Language - The language you want error messages returned in; must be supported by the target server.
    • \n
    • Packet Size - A value that determines the number of bytes per network packet transferred from the database server to the client. The correct setting of this attribute can improve performance. When set to 0, the initial default, the driver uses the default packet size as specified in the Microsoft SQL Server configuration. When set to -1, the driver computes the maximum allowable packet size on the first connect to the data source and saves the value in the system information. When set to x, an integer from 1 to 10, which indicates a multiple of 512 bytes (for example, Packet Size of 6 means to set the packet size to 6 * 512 equal 3072 bytes). For you to take advantage of this connection attribute, you must configure the System 10 server for a maximum network packet size greater than or equal to the value you specified for Packet Size.
    • \n
    • Prepare Method - This option is specific to the TDS-based driver for Sybase & Microsoft SQL Server SQL Servers. It can take the values None, Partial, or Full (connectoptions = -O [0, 1, 2] respectively). It is used to determine whether stored procedures are created on the server for calls to SQLPrepare.
    • \n
    • No Quoted Identifiers - This option indicates that the underlying driver does not support quoted identifiers, which is required for Jet engine-based products like MS Access.
    • \n
    • Use ANSI nulls, padding and warnings - This option affects TDS agent & Lite Driver connections to Microsoft SQL Server databases. Sybase connectivity is not affected.
    • \n
    • Map Serializable to Snapshot isolation level - Enable Snapshot transaction isolation level in the driver. Snapshot Isolation is a new transaction isolation level available in Microsoft SQL Server 2005.
    • \n
    \n
  20. \n
  21. Click Next.
  22. \n
  23. \"The fourth dialog enables you to set optional ODBC connection parameters.\n
      \n
    • Read-only connection \u00E2\u0080\u0094 Specifies whether the connection is \"Read-only.\" Must be unchecked to INSERT, UPDATE, or DELETE records, and to run some Stored Procedures including some built-in functions.
    • \n
    • Defer fetching of long data \u00E2\u0080\u0094 Defers fetching of LONG (BINARY, BLOB, etc.) fields in wildcard queries. This provides significant performance increases when fields in query do not include LONG data fields.
    • \n
    • Disable interactive login \u00E2\u0080\u0094 Suppresses the ODBC \"Username\" and \"Password\" login dialog boxes when interacting with your ODBC DSN from within an ODBC compliant application.
    • \n
    • Row Buffer Size \u00E2\u0080\u0094 This attribute specifies the number of records to be delivered from the driver to the client application in a single batch. Values can range from 1 to 999.
    • \n
    • Max Rows Override \u00E2\u0080\u0094 Allows you to set a limit for the maximum number of rows to be returned from a query. The default value of 0 means no limit.
    • \n
    • Initial SQL \u00E2\u0080\u0094 Lets you specify a file containing SQL statements that will be run automatically against the database upon connection.
    • \n
    • Dynamic Cursor Sensitivity \u00E2\u0080\u0094 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 carry an overhead. If this option is enabled, the table oplrvc must have been created beforehand using the appropriate script for the target database.
    • \n
    • Enable logging to the log file \u00E2\u0080\u0094 Check the checkbox and use the associated textbox to provide the full path to a file in which to log diagnostic information.
    • \n
    \n
  24. \n
  25. Click Next.
  26. \n
  27. \"The fifth dialog enables you to set additional parameters to enhance compatibility with applications.\n
      \n
    • Enable Microsoft Jet engine options \u00E2\u0080\u0094 Facilitates the translation of certain data types for the Microsoft Jet Engine. If you notice that money and other data types are mishandled with Microsoft or other applications, test with Jet fix enabled.
    • \n
    • Disable Autocommit \u00E2\u0080\u0094 Changes the commit behavior of the OpenLink driver. The default mode is AutoCommit (box unchecked).
    • \n
    • Disable rowset size limit \u00E2\u0080\u0094 Disables a limitation enforced by the cursor library. This limitation is enforced by default. It prevents the driver from claiming all available memory when a resultset (typically generated by an accidental query) is very large. The limit is not normally reached.
    • \n
    • Multiple Active Statements Emulation \u00E2\u0080\u0094 Enables the use of Multiple Active statements in an ODBC application even if the underlying database does not allow this, by emulation within the driver.
    • \n
    • SQL_DBMS Name \u00E2\u0080\u0094 Manually overrides the SQLGetInfo(SQL_DBMS_NAME) response returned by the driver. This is required for products like Microsoft InfoPath for which the value should be \"SQL Server\".
    • \n
    \n
  28. \n
  29. Click Next.
  30. \n
  31. The final dialog enables you to test your Data Source. Click the Test Data Source button.
  32. \n
" . . . . . . "ODBC Driver for SQL Server Data Source Name (DSN) Configuration for Windows" . . "
    \r\n
  1. Open the \"ODBC Data Sources\" Application.
  2. \r\n
  3. \r\n
      \r\n
    • 64-bit drivers should be configured with the 64-bit Application.
    • \r\n
    • 32-bit drivers should be configured with the 32-bit Application.
    • \r\n
    \r\n
  4. \r\n
  5. Select the System DSN tab, then click Add.
  6. \r\n
  7. \r\n
      \r\n
    • Select the OpenLink \"Lite\" Driver for MySQL Data Sources from the list of available drivers. 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.
    • \r\n
    \r\n
  8. \r\n
  9. Click Finish.
  10. \r\n
  11. \"The first dialog prompts for a Data Source Name and optional description.
  12. \r\n
  13. Click Next.\"
  14. \r\n
  15. \"The second dialog prompts for information that identifies the Microsoft SQL Server DBMS and database. It also provides a checkbox that allows you to check your basic connection parameters before setting advanced and optional settings.\r\n
      \r\n
    • Server Name - Select the drop-down list box to invoke the driver's Dynamic discovery of Microsoft SQL Server instance on the network and choose the required instance, if listed.
    • \r\n
    • Connect now to verify that all settings are correct - Will attempt to connect to the database once you click Continue.
    • \r\n
    • Login ID - A valid Microsoft SQL Server username
    • \r\n
    • Password - A valid Microsoft SQL Server password
    • \r\n
    • Use the Advanced button to manually configure a connection if the Microsoft SQL Server instance could not be dynamically located, as detailed below.
    • \r\n
    • ServerType - An OpenLink proprietary parameter that associates the connection with a particular TDS version.
    • \r\n
    • Hostname - The hostname or IP address on which Microsoft SQL Server listens
    • \r\n
    • Port number - The TCP port on which Microsoft SQL Server lists
    • \r\n
    • Server Name - Microsoft SQL Server instance name on the specified host. A Microsoft SQL Server instance can also be specified by appending \"\\InstanceName\" to the ServerName, i.e., \"ServerName\\InstanceName\"
    • \r\n
    • Mirror Host - The name of the Failover Server hosting the mirrored database if configured
    • \r\n
    • Use strong encryption of data - Enable SSL encryption of data between driver and database
    • \r\n
    • Use Mars - Multiple Active Result Sets enables the concurrent processing of multiple statements/queries and/or result sets on a single connection
    • \r\n
    • Verify Server Certificate - Verify the Database Server SSL certificate against the one specified in the \"CA file\" field
    • \r\n
    • CA file - Specify the location of a Valid SSL Certificate for use during the connection
    • \r\n
    \r\n
  16. \r\n
  17. Click Next.
  18. \r\n
  19. \"The third dialog takes a combination of database-specific and optional parameters.\r\n
      \r\n
    • Database - The Microsoft SQL Server database
    • \r\n
    • Character set - The client application's character set (8-bit only; the Unicode driver always returns UCS-2 on Windows).
    • \r\n
    • Language - The language you want error messages returned in; must be supported by the target server.
    • \r\n
    • Packet Size - A value that determines the number of bytes per network packet transferred from the database server to the client. The correct setting of this attribute can improve performance. When set to 0, the initial default, the driver uses the default packet size as specified in the Microsoft SQL Server configuration. When set to -1, the driver computes the maximum allowable packet size on the first connect to the data source and saves the value in the system information. When set to x, an integer from 1 to 10, which indicates a multiple of 512 bytes (for example, Packet Size of 6 means to set the packet size to 6 * 512 equal 3072 bytes). For you to take advantage of this connection attribute, you must configure the System 10 server for a maximum network packet size greater than or equal to the value you specified for Packet Size.
    • \r\n
    • Prepare Method - This option is specific to the TDS-based driver for Sybase & Microsoft SQL Server SQL Servers. It can take the values None, Partial, or Full (connectoptions = -O [0, 1, 2] respectively). It is used to determine whether stored procedures are created on the server for calls to SQLPrepare.
    • \r\n
    • No Quoted Identifiers - This option indicates that the underlying driver does not support quoted identifiers, which is required for Jet engine-based products like MS Access.
    • \r\n
    • Use ANSI nulls, padding and warnings - This option affects TDS agent & Lite Driver connections to Microsoft SQL Server databases. Sybase connectivity is not affected.
    • \r\n
    • Map Serializable to Snapshot isolation level - Enable Snapshot transaction isolation level in the driver. Snapshot Isolation is a new transaction isolation level available in Microsoft SQL Server 2005.
    • \r\n
    \r\n
  20. \r\n
  21. Click Next.
  22. \r\n
  23. \"The fourth dialog enables you to set optional ODBC connection parameters.\r\n
      \r\n
    • Read-only connection \u00E2\u0080\u0094 Specifies whether the connection is \"Read-only.\" Must be unchecked to INSERT, UPDATE, or DELETE records, and to run some Stored Procedures including some built-in functions.
    • \r\n
    • Defer fetching of long data \u00E2\u0080\u0094 Defers fetching of LONG (BINARY, BLOB, etc.) fields in wildcard queries. This provides significant performance increases when fields in query do not include LONG data fields.
    • \r\n
    • Disable interactive login \u00E2\u0080\u0094 Suppresses the ODBC \"Username\" and \"Password\" login dialog boxes when interacting with your ODBC DSN from within an ODBC compliant application.
    • \r\n
    • Row Buffer Size \u00E2\u0080\u0094 This attribute specifies the number of records to be delivered from the driver to the client application in a single batch. Values can range from 1 to 999.
    • \r\n
    • Max Rows Override \u00E2\u0080\u0094 Allows you to set a limit for the maximum number of rows to be returned from a query. The default value of 0 means no limit.
    • \r\n
    • Initial SQL \u00E2\u0080\u0094 Lets you specify a file containing SQL statements that will be run automatically against the database upon connection.
    • \r\n
    • Dynamic Cursor Sensitivity \u00E2\u0080\u0094 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 carry an overhead. If this option is enabled, the table oplrvc must have been created beforehand using the appropriate script for the target database.
    • \r\n
    • Enable logging to the log file \u00E2\u0080\u0094 Check the checkbox and use the associated textbox to provide the full path to a file in which to log diagnostic information.
    • \r\n
    \r\n
  24. \r\n
  25. Click Next.
  26. \r\n
  27. \"The fifth dialog enables you to set additional parameters to enhance compatibility with applications.\r\n
      \r\n
    • Enable Microsoft Jet engine options \u00E2\u0080\u0094 Facilitates the translation of certain data types for the Microsoft Jet Engine. If you notice that money and other data types are mishandled with Microsoft or other applications, test with Jet fix enabled.
    • \r\n
    • Disable Autocommit \u00E2\u0080\u0094 Changes the commit behavior of the OpenLink driver. The default mode is AutoCommit (box unchecked).
    • \r\n
    • Disable rowset size limit \u00E2\u0080\u0094 Disables a limitation enforced by the cursor library. This limitation is enforced by default. It prevents the driver from claiming all available memory when a resultset (typically generated by an accidental query) is very large. The limit is not normally reached.
    • \r\n
    • Multiple Active Statements Emulation \u00E2\u0080\u0094 Enables the use of Multiple Active statements in an ODBC application even if the underlying database does not allow this, by emulation within the driver.
    • \r\n
    • SQL_DBMS Name \u00E2\u0080\u0094 Manually overrides the SQLGetInfo(SQL_DBMS_NAME) response returned by the driver. This is required for products like Microsoft InfoPath for which the value should be \"SQL Server\".
    • \r\n
    \r\n
  28. \r\n
  29. Click Next.
  30. \r\n
  31. The final dialog enables you to test your Data Source. Click the Test Data Source button.
  32. \r\n
" . . . .