Commit 9808bd33 authored by facupanizza's avatar facupanizza

Change parameter instance_name by instancename

Change the name of the parameter instance_name by instancename
parent ca566a13
......@@ -130,8 +130,8 @@ abstract class AbstractOracleDriver implements Driver, ExceptionConverterDriver
$service = 'SERVICE_NAME=' . $serviceName;
}
if (isset($params['instance_name']) && ! empty($params['instance_name'])) {
$instance = '(INSTANCE_NAME = ' . $params['instance_name'] . ')';
if (isset($params['instancename']) && ! empty($params['instancename'])) {
$instance = '(INSTANCE_NAME = ' . $params['instancename'] . ')';
}
if (isset($params['pooled']) && $params['pooled'] == true) {
......
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