Commit 1de0f9d9 authored by Gabriel Gayan Fanta's avatar Gabriel Gayan Fanta Committed by Benjamin Eberlei

Added persistent connection handling in OCI8 Driver

parent 486379ad
......@@ -38,7 +38,8 @@ class Driver implements \Doctrine\DBAL\Driver
$password,
$this->_constructDsn($params),
isset($params['charset']) ? $params['charset'] : null,
isset($params['sessionMode']) ? $params['sessionMode'] : OCI_DEFAULT
isset($params['sessionMode']) ? $params['sessionMode'] : OCI_DEFAULT,
isset($params['persistent']) ? $params['persistent'] : false
);
}
......
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