The OpenLink ODBC Driver for SQL Server (Express Edition is a distributed as a Disk Image (DMG) file. Simply double click on the disk image 'mul6esql.dmg' to extract the installer mpkg file:
|
Double-click on the mpkg file to run the installer and following the on screen instriuction as indicated below to complete the installation:
|
Installer Welcome Dialog for the OpenLink ODBC Driver for SQL Server (Express Edition):
|
Please review the readme file for installation requirements and known issues:
|
Please read the software license agreement before continuing your installation:
|
|
Select destination volume for driver installation:
|
Choose to perform a custom or default installation of the driver:
|
If you chose the custom option select which of the components below are to be installed:
|
The Software must be installed as a user with Administrative privileges on the machine:
|
After the driver has been installed you will be prompted for a license file. If a license file already exists on the machine then select the 'use exisiting file' option. A trial (try) or full (buy) license can be obtain by selecting the 'try and buy' option which loads our online try-and-buy web page:
|
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 purchases a full license if required:
|
Click on the 'download license' button to obtain the license file immediately and save to your desktop. Alternatively an auto e-mail will be sent to the registered users e-mail address with a link to their OpenLink Data Space (ODS) where all trial and full license files will be stored in the Briefcase for download at a later date.
|
Select the license file to be used for the installation:
|
Installation is complete:
|
To configure an ODBC DSN, run the OpenLink iODBC Administrator located in the /Applications/iODBC folder:
|
Click on the add button to Choose the ODBC Driver the DSN should be created for:
|
Choose the OpenLink SQL Server Driver (Express Edition) v6.0 from the list of available drivers:
|
In the Data Source tab, select a suitable DSN name and optional description for the Data Source to be created:
|
The Connection Tab request the minimum paramters 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 will be resolved by your local DNS is acceptable.
Port: This is the port on which SQL Server is listening
Database: This is the SQL Server database that you want to connect to
User Name: This is a valid user for the SQL Server Database
The advanced button displays additional optional parameters that can be configured
|
| Tds | The version of TDS to be used.(default - '8.0') |
| Cache metadata | When used with prepareSQL=3, setting this property to true will cause the driver to cache column metadata for SELECT statements. Use with care.(default - false) |
| Charset | Very important setting; this determines the byte value to character mapping for CHAR/VARCHAR/TEXT values. Applies for characters from the extended set (codes 128-255). For NCHAR/NVARCHAR/NTEXT values doesn't have any effect since these are stored using Unicode. (Default - the character set the server was installed with.) |
| Language | Applies for characters from the extended set (codes 128-255). For NCHAR/NVARCHAR/NTEXT values doesn't have any effect since these are stored using Unicode.(default - the character set the server was installed with) |
| Domain | Specifies the Windows domain in which to authenticate. If present and the username and password are provided, it uses Windows (NTLM) authentication instead of the usual SQL Server authentication (i.e. the user and password provided are the domain user and password). This allows non-Windows clients to log in to servers which are only configured to accept Windoes authentication. |
| Instance | Named instance to connect to. SQL Server can run multiple so-called 'named instances' (i.e. different server instances, running on different TCP ports) on the same machine. When using Microsoft tools, selecting one of these instances is made by using '[host_name]\[instance_name]' instead of the usual '[host_name]'. You will have to split the two and use the instance name as a property. |
| AppName | Application name. Of no practical use, it is displayed by Enterprise Manager or Profiler associated with the connection. |
| ProgName | Client library name. Of no practical use, it is displayed by Enterprise Manager or Profiler associated with the connection. |
| Wsid | Workstation ID. Of no practical use, it is displayed by Enterprise Manager or Profiler associated with the connection.(default - the client host name) |
| MacAddress | Network interface card MAC address.(default - '000000000000') |
| SendStringParametersAsUnicode | Determines whether string parameters are sent to the SQL Server database in Unicode or in the default character encoding of the database.(default - true) |
| LastUpdateCount | If true only the last update count will be returned by executeUpdate(). This is useful in case you are updating or inserting into tables that have triggers (such as replicated tables); there's no way to make the difference between an update count returned by a trigger and the actual update count but the actual update count is always the last as the triggers execute first. If false all update counts are returned; use getMoreResults() to loop through them. (default - true) |
| PrepareSQL | This parameter specifies the mechanism used for Prepared Statements.(default - 3 for SQL Server) |
| PacketSize | The network packet size (a multiple of 512).(default - 4096 for TDS 7.0/8.0; 512 for TDS 4.2/5.0) |
| TcpNoDelay | true to enable TCP_NODELAY on the socket; false to disable it.(default - true) |
| LobBuffer | The amount of LOB data to buffer in memory before caching to disk. The value is in bytes for Blob data and chars for Clob data.(default - 32768) |
| MaxStatements | The number of statement prepares each connection should cache. A value of 0 will disable statement caching.(default - 500) |
| LoginTimeout | The amount of time to wait (in seconds) for a successful connection before timing out. If namedPipe is true and loginTimeout is non-zero, the value of loginTimeout is used for the retry timeout when 'All pipe instances are busy' error messages are received while attempting to connect to the server. If namedPipe is true and loginTimeout is zero (the default), a value of 20 seconds is used for the named pipe retry timeout. (default - 0) |
| SocketTimeout | The amount of time to wait (in seconds) for network activity before timing out.Use with care! If a non zero value is supplied this must be greater than the maximum time that the server will take to answer any query. Once the timeout value is exceeded the network connection will be closed. This parameter may be useful for detecting dead network connections in a pooled environment.(default - 0) |
| NamedPipe | When set to true, named pipe communication is used to connect to the database instead of TCP/IP sockets. When the os.name system property starts with 'windows' (case-insensitive), named pipes (both local and remote) are accessed through the Windows filesystem by opening a RandomAccessFile to the path. When the SQL Server and the client are on the same machine, a named pipe will usually have better performance than TCP/IP sockets since the network layer is eliminated. |
| Ssl | Specifies if and how to use SSL for secure communication.(default - off) |
| BatchSize | Controls how many statements are sent to the server in a batch. The actual batch is broken up into pieces this large that are sent separately.(default - 0[unlimited] for SQL Server) |
| UseCursors | Instructs the driver to use server side cursors instead of direct selects (AKA firehose cursors) for forward-only read-only result sets (with other types of result sets server- or client-side cursors are always used).(default - false) |
| BufferMaxMemory | Controls the global buffer memory limit for all connections (in kilobytes). When the amount of buffered server response packets reaches this limit additional packets are buffered to disk; there is however one exception: each Statement gets to buffer at least '[bufferMinPackets]' to memory before this limit is enforced. This means that this limit can and will usually be exceeded.(default - 1024) |
| BufferMinPackets | Controls the minimum number of packets per statement to buffer to memory. Each Statement will buffer at least this many packets before being forced to use a temporary file if the [bufferMaxMemory] is reached, to ensure good performance even when one Statement caches a very large amount of data.(default - 8) |
| UseLOBs | Controls whether large types (IMAGE and TEXT/NTEXT) should be mapped by default (when using getObject()) to LOBs . The default type constant returned is also controlled by this property: BLOB for IMAGE and CLOB for TEXT/NTEXT when true, LONGVARBINARY for IMAGE and LONGVARCHAR for TEXT/NTEXT when false.(default - true) |
As indicated above the paramters of the options and preferences tabs are not required for a basic connection:
|
|
Click on the 'Test Data Source' button to make a connection to the database to verify connectivity:
|
Enter a vaild username and pasword for the database:
|
A successful connection to the database has been made:
|
|
Previous
Contents of OpenLink ODBC Driver for SQL Server (Express Editon) |
Chapter Contents |
Next
OpenLink ODBC Driver for SQL Server (Express Editon) for Windows |