• Topic
  • Discussion
  • UdaWikiWeb.InstallPostgreSQLExpressOSX(Last) -- Owiki? , 2016-08-19 15:00:25 Edit owiki 2016-08-19 15:00:25

    Installation and Configuration of the Single-Tier "Express" Edition ODBC Driver for PostgreSQL Data Sources, for Mac OS X


    Review Preinstallation Documentation: Pre-Installation Requirements

    Installation

    Note: The software must be installed as a user with Administrative privileges on the machine.
    1. The Single-Tier "Express" Edition ODBC Driver for PostgreSQL Data Sources is distributed as a Disk Image (.dmg) file:





    2. Double-click the disk image 'mul6epgr.dmg' to access the installer .mpkg file:





    3. Double-click the .mpkg file to run the installer and follow the instructions to complete the installation:





    4. When prompted, permit the verification script to run. This simply checks to see that you are running a version of Mac OS X later than 10.3.0:





    5. Review the Welcome message to confirm you're installing the right driver:





    6. Review the Read Me for installation requirements and any known issues:





    7. Read the Software License Agreement:





    8. Agree to the Software License Agreement before continuing your installation:





    9. Select the destination volume for driver installation:





    10. Accept the default installation of the driver or click Customize to select specific components for installation:





    11. Select the components to be installed or click Easy Install to return to the default:





    12. The software must be installed as a user with Administrative privileges on the machine. When prompted, provide a relevant username and password:





    13. Installation will proceed.





    14. During installation, you will be prompted to select a license file for the driver. If such a license file already exists on the machine, select the 'use existing file' option.





    15. If you accidentally clicked this option, you can cancel out of the selection dialog. As the following alert will explain, you can manually apply the license file at any point in the future:





    16. A trial or permanent license may be obtained by selecting the Try and Buy option which loads OpenLink's online try and buy web page:





    17. A permanent license may be obtained by clicking on the 'Shop' link to visit our online store, or you may obtain a trial license by registering with and logging in to the OpenLink Web site:





    18. Click on the 'Download License' button to immediately obtain an evaluation license file. It will be saved to your browser's download folder which typically defaults to your desktop. A message will also be sent to your email address with a link to your OpenLink Data Space (ODS) Briefcase, where all non-expired trial and full license files will be stored for download at your convenience.





    19. Close the browser, and proceed as if you had selected the option to 'use existing file." Select the license file to be used for the installation:





    20. Installation is now complete, and you can exit the installer and proceed to configure a DSN:




    Configuration

    1. To configure an ODBC DSN, run the OpenLink ODBC Administrator.app (/Applications/Utlities/)





    2. Click the Add button:





    3. Select the Unicode driver variant if and only if you are working with multi-byte character sets, as unnecessary translations can significantly affect ODBC performance:





    4. Provide a suitable DSN name and optional description for the Data Source:





    5. The Connection tab takes the minimum parameters required to make a connection to the target database:





      • Host - The hostname of the server on which the target PostgreSQL instance is running
      • Port - The port at which the target PostgreSQL instance is listening (default 5432)
      • Database - The database name of a valid database on the target PostgreSQL instance
      • User name - A valid PostgreSQL username
      • The advanced button displays additional, optional parameters that can be configured.





        Attribute Name Description
        PrepareThreshold Sets the default threshold for enabling server-side prepare.

    6. Click continue to proceed to the Options tab. This tab contains optional parameters that are not required for basic ODBC connectivity:





      • Row Buffer Size - The number of records to be transported over the network in a single network hop. Values can range from 1 to 99.
      • Hide Login Dialog - Suppresses the ODBC "Username" and "Password" login dialog boxes when interacting with your ODBC DSN from within an ODBC compliant application.
      • Read Only connection - Specifies whether the connection is "Read-only." Make sure the checkbox is unchecked to request a "Read/Write" connection.
      • Drop Catalog from Meta calls - Enable this option to have the catalog name not appear for tables, views, and procedures when requesting database meta-data.
      • No support of quoted identifier - If set, the call SQLGetInfo(SQL_IDENTIFIER_QUOTE_CHAR) will return a space (" "). It can be used if the DBMS doesn't support quoted SQL like select * from "account."
      • Drop Schema from Meta calls - Enable this option to have the schema-name not appear for tables, views, and procedures when requesting database meta-data.
      • SQLStatistics disabled - Check this box to have SQLStatistics() return an empty resultset. Use this if the underlying database does not support retrieval of statistics about a table (e.g. what indexes it has).
      • No support of search string escape - If set, the call SQLGetInfo(SQL_LIKE_ESCAPE_CLAUSE) will return a space (" "). It can be used if the DBMS doesn't support SQL escape patterns.
      • Patch of NULL size of SQL_CHAR - 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). With a default value of 0, the driver uses the size returned by the database.
      • 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 return the value should be "SQL Server").
    7. Click continue to proceed to the Preferences tab. This tab contains optional parameters that are not required for basic ODBC connectivity:





      • Initialization SQL - Lets you specify a file containing SQL statements that will be run automatically against the database upon connection.
      • 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 check-sums (if any) already stored in the row version cache for the same rows when fetched previously. If the check-sums 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 check-sums 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 'High Cursor Sensitivity' unchecked, as performance is improved. The calculation and comparison of checksums for each row fetched carries an overhead. If this option is enabled, the table oplrvc must have been created beforehand using the appropriate script for the target database.
      • 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.
      • Disable Autocommit - Changes the default commit behaviour of the OpenLink driver. The default mode is AutoCommit (box unchecked).
      • Disable Rowset Size Limit - Disables the 100 row limit in the cursor library. This limitation is enforced by default. It is meant to prevent the driver from claiming all available memory in the event that a resultset generated from an erroneous query is very large. The limit is not normally reached.
      • Defer fetching of long data - Defers fetching of LONG (BINARY, BLOB, etc.) data unless explicitly requested in a query. This provides significant performance increases when fields in query do not include LONG data fields.
      • Multiple Active Statements Emulation - Enables use of Multiple Active statements in an ODBC application even if the underlying database does not allow this, as it is emulated in the driver.
    8. Click on the 'Test Data Source' button to make a connection to the database to verify connectivity:





    9. Enter a valid username and password for the database:





    10. A successful connection to the database has been made:




    Next...


    Referenced by...