Commit ce7489be authored by Bob van de Vijver's avatar Bob van de Vijver

Updated connectstring doc

parent 41fc898c
...@@ -295,9 +295,11 @@ pdo\_oci / oci8 ...@@ -295,9 +295,11 @@ pdo\_oci / oci8
- ``instancename`` (string): Optional parameter, complete whether to - ``instancename`` (string): Optional parameter, complete whether to
add the INSTANCE_NAME parameter in the connection. It is generally used add the INSTANCE_NAME parameter in the connection. It is generally used
to connect to an Oracle RAC server to select the name of a particular instance. to connect to an Oracle RAC server to select the name of a particular instance.
- ``connectstring`` (string): Complete Easy Connect connection descriptor,
Complete connection descriptors are also supported. You only need to provide the following parameter, and none of the above: see https://docs.oracle.com/database/121/NETAG/naming.htm. When using this option,
- ``connectstring`` (string): Complete Easy Connect connection descriptor, see https://docs.oracle.com/cd/E11882_01/network.112/e41945/naming.htm. you will still need to provide the ``user`` and ``password` parameters, but the other
parameters will no longer be used. Note that when using this parameter, the `getHost`
and `getPort` methods from `Doctrine\DBAL\Connection` will no longer function as expected.
pdo\_sqlsrv / sqlsrv pdo\_sqlsrv / sqlsrv
^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^
......
...@@ -109,11 +109,10 @@ abstract class AbstractOracleDriver implements Driver, ExceptionConverterDriver ...@@ -109,11 +109,10 @@ abstract class AbstractOracleDriver implements Driver, ExceptionConverterDriver
* *
* @return string * @return string
* *
* @link https://docs.oracle.com/cd/E11882_01/network.112/e41945/naming.htm * @link https://docs.oracle.com/database/121/NETAG/naming.htm
*/ */
protected function getEasyConnectString(array $params) protected function getEasyConnectString(array $params)
{ {
if ( ! empty($params['connectstring'])) { if ( ! empty($params['connectstring'])) {
return $params['connectstring']; return $params['connectstring'];
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment