The following table lists the connection string parameters for Oracle.
Parameter | Description |
---|---|
|
Enables the Direct mode. |
|
Used to select the Oracle client to use with the application. |
|
Used to specify the host of the data source. |
|
Used to specify the password. |
|
Used to specify the port number for the connection. 1521 by default. |
|
Used to change the current schema of the session to the specified schema. |
|
Used to specify the server name. |
|
Used to specify the name of the Oracle Client. The value may be selected from the drop-down list of available clients. |
|
Used to specify the Oracle system identifier of the database instance. |
|
Used to specify the username. |
Advanced Settings |
|
|
Enables the use of all schemas that an Oracle user has been granted privileges on. The default value is False. |
|
To retrieve metadata, not all parameters according to MSDN can accept a null value. If NULL, the driver should return an error. But some 3rd-party tools pass NULL to the parameters. These options should be enabled for compatibility with such tools. |
|
|
|
Used to set the character set that the driver uses to read and write character data. |
ConnectMode |
Used to specify the system privilege for the user who connects to the server. The privilege must be granted to the user before connecting to the server.
Normal
The default value. Connect as a normal user.
SysOper
Connect with the
SYSOPER privilege.
SysDBA
Connect with the
SYSDBA privilege.
SysASM
Connect with the
SYSASM privilege.
SysBkp
Connect with the
SysBackup privilege.
SysDG
Connect with the
SysDG privilege.
SysKM
Connect with the
SYSKM privilege.
|
|
The time (in seconds) to wait for a connection to open before terminating an attempt. The default value is 0 — an attempt to connect waits indefinitely. |
|
|
|
By default, the ODBC Driver allows to set the SQL_ATTR_QUERY_TIMEOUT attribute by the SQLSetStmtAttr and SQLSetConnectAttr functions. When set to True, the ODBC Driver will ignore the new value and return an error, if an attempt is made to change the value of Timeout for SQL query execution. The default value of this parameters is False. |
IP Version |
The Internet Protocol Version.
ivIPv4
The default value. Internet Protocol Version 4 (IPv4) is used.
ivIPv6
Internet Protocol Version 6 (IPv6) is used.
ivIPBoth
Either Internet Protocol Version 6 (IPv6) or Version 4 (IPv4) is used.
Note: When the property is set to
ivIPBoth , a connection attempt is made via IPv6 if it is enabled in the operating system. If the connection attempt fails, a new connection attempt is made via IPv4 .
|
|
Respectively, if the SQL_ATTR_ROW_ARRAY_SIZE attribute value is less than MinFetchRows, then the number of rows queried from the server will equal MinFetchRows. Otherwise - it will be equal to SQL_ATTR_ROW_ARRAY_SIZE.
|
|
Used to set the behavior corresponding to the ODBC specification version that a third-party tool expects. The behavior of ODBC driver can be changed by setting a value for the SQL_ATTR_ODBC_VERSION attribute by calling the SQLSetEnvAttr function. But some third-party tools expect the driver to exhibit ODBC 2.x behavior, but forget to call SQLSetEnvAttr with the specified version or pass an incorrect value there. In this case, the required behavior can be explicitly specified in the Connection String by setting the ODBC Behavior parameter. The possible values are:
|
|
Used to prevent data from being modified, if set to True. False by default. |
|
Enables the use of local regional settings when converting numbers to strings. |
|
Enables the use of local regional settings when converting dates and times to a strings. |
|
Sets the string value types returned by the driver as Default, Ansi or Unicode.
The parameter value should be changed if any third-party tool supports only Ansi string types or Unicode ones. |
|
Enables Unicode support. |
Using Service Name:
DRIVER={Devart ODBC Driver for Oracle};Direct=True;Host=myServer;Service Name=myServiceName;User ID=myUsername;Password=myPassword |
Using SID (deprecated format):
DRIVER={Devart ODBC Driver for Oracle};Direct=True;Host=myServer;SID=mySID;User ID=myUsername;Password=myPassword |
DRIVER={Devart ODBC Driver for Oracle};Data Source=myServer/myServiceName;Home Name=myHomeName;User ID=myUsername;Password=myPassword |