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
5d4d1710
Commit
5d4d1710
authored
Jul 12, 2011
by
Guilherme Blanco
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #20 from milokmet/oci8-protected
OCI8 Change private properties and methods to protected.
parents
4981b302
0f15533d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
Driver.php
lib/Doctrine/DBAL/Driver/OCI8/Driver.php
+1
-1
OCI8Connection.php
lib/Doctrine/DBAL/Driver/OCI8/OCI8Connection.php
+2
-2
OCI8Statement.php
lib/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php
+5
-5
No files found.
lib/Doctrine/DBAL/Driver/OCI8/Driver.php
View file @
5d4d1710
...
...
@@ -47,7 +47,7 @@ class Driver implements \Doctrine\DBAL\Driver
*
* @return string The DSN.
*/
pr
ivate
function
_constructDsn
(
array
$params
)
pr
otected
function
_constructDsn
(
array
$params
)
{
$dsn
=
''
;
if
(
isset
(
$params
[
'host'
]))
{
...
...
lib/Doctrine/DBAL/Driver/OCI8/OCI8Connection.php
View file @
5d4d1710
...
...
@@ -26,9 +26,9 @@ namespace Doctrine\DBAL\Driver\OCI8;
*/
class
OCI8Connection
implements
\Doctrine\DBAL\Driver\Connection
{
pr
ivate
$_dbh
;
pr
otected
$_dbh
;
pr
ivate
$_executeMode
=
OCI_COMMIT_ON_SUCCESS
;
pr
otected
$_executeMode
=
OCI_COMMIT_ON_SUCCESS
;
/**
* Create a Connection to an Oracle Database using oci8 extension.
...
...
lib/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php
View file @
5d4d1710
...
...
@@ -30,15 +30,15 @@ use \PDO;
class
OCI8Statement
implements
\Doctrine\DBAL\Driver\Statement
{
/** Statement handle. */
pr
ivate
$_sth
;
pr
ivate
$_executeMode
;
pr
ivate
static
$_PARAM
=
':param'
;
pr
ivate
static
$fetchStyleMap
=
array
(
pr
otected
$_sth
;
pr
otected
$_executeMode
;
pr
otected
static
$_PARAM
=
':param'
;
pr
otected
static
$fetchStyleMap
=
array
(
PDO
::
FETCH_BOTH
=>
OCI_BOTH
,
PDO
::
FETCH_ASSOC
=>
OCI_ASSOC
,
PDO
::
FETCH_NUM
=>
OCI_NUM
);
pr
ivate
$_paramMap
=
array
();
pr
otected
$_paramMap
=
array
();
/**
* Creates a new OCI8Statement that uses the given connection handle and SQL statement.
...
...
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