Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
92f7caa6
Commit
92f7caa6
authored
Nov 21, 2013
by
Steve Müller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add pdo_oracle driver connection pool option
parent
34f34e4e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
7 deletions
+15
-7
Driver.php
lib/Doctrine/DBAL/Driver/PDOOracle/Driver.php
+15
-7
No files found.
lib/Doctrine/DBAL/Driver/PDOOracle/Driver.php
View file @
92f7caa6
...
@@ -53,10 +53,11 @@ class Driver implements \Doctrine\DBAL\Driver
...
@@ -53,10 +53,11 @@ class Driver implements \Doctrine\DBAL\Driver
*/
*/
private
function
_constructPdoDsn
(
array
$params
)
private
function
_constructPdoDsn
(
array
$params
)
{
{
$dsn
=
'oci:'
;
$dsn
=
'oci:dbname='
;
if
(
isset
(
$params
[
'host'
])
&&
$params
[
'host'
]
!=
''
)
{
if
(
isset
(
$params
[
'host'
])
&&
$params
[
'host'
]
!=
''
)
{
$dsn
.=
'
dbname=
(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)'
.
$dsn
.=
'(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)'
.
'(HOST='
.
$params
[
'host'
]
.
')'
;
'(HOST='
.
$params
[
'host'
]
.
')'
;
if
(
isset
(
$params
[
'port'
]))
{
if
(
isset
(
$params
[
'port'
]))
{
$dsn
.=
'(PORT='
.
$params
[
'port'
]
.
')'
;
$dsn
.=
'(PORT='
.
$params
[
'port'
]
.
')'
;
...
@@ -64,13 +65,20 @@ class Driver implements \Doctrine\DBAL\Driver
...
@@ -64,13 +65,20 @@ class Driver implements \Doctrine\DBAL\Driver
$dsn
.=
'(PORT=1521)'
;
$dsn
.=
'(PORT=1521)'
;
}
}
$database
=
'SID='
.
$params
[
'dbname'
];
$pooled
=
''
;
if
(
isset
(
$params
[
'service'
])
&&
$params
[
'service'
]
==
true
)
{
if
(
isset
(
$params
[
'service'
])
&&
$params
[
'service'
]
==
true
)
{
$dsn
.=
'))(CONNECT_DATA=(SERVICE_NAME='
.
$params
[
'dbname'
]
.
')))'
;
$database
=
'SERVICE_NAME='
.
$params
[
'dbname'
];
}
else
{
$dsn
.=
'))(CONNECT_DATA=(SID='
.
$params
[
'dbname'
]
.
')))'
;
}
}
if
(
isset
(
$params
[
'pooled'
])
&&
$params
[
'pooled'
]
==
true
)
{
$pooled
=
'(SERVER=POOLED)'
;
}
$dsn
.=
'))(CONNECT_DATA=('
.
$database
.
')'
.
$pooled
.
'))'
;
}
else
{
}
else
{
$dsn
.=
'dbname='
.
$params
[
'dbname'
];
$dsn
.=
$params
[
'dbname'
];
}
}
if
(
isset
(
$params
[
'charset'
]))
{
if
(
isset
(
$params
[
'charset'
]))
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment