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
033a8292
Commit
033a8292
authored
Jul 07, 2012
by
ivan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "bindParam function expects length parameter for oci_bind_by_name oci8"
This reverts commit
17a265d9
.
parent
17a265d9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
2 deletions
+5
-2
Statement.php
lib/Doctrine/DBAL/Statement.php
+2
-2
Console
lib/vendor/Symfony/Component/Console
+1
-0
doctrine-build-common
lib/vendor/doctrine-build-common
+1
-0
doctrine-common
lib/vendor/doctrine-common
+1
-0
No files found.
lib/Doctrine/DBAL/Statement.php
View file @
033a8292
...
...
@@ -116,9 +116,9 @@ class Statement implements \IteratorAggregate, DriverStatement
* @param integer $type The PDO binding type.
* @return boolean TRUE on success, FALSE on failure.
*/
public
function
bindParam
(
$name
,
&
$var
,
$type
=
PDO
::
PARAM_STR
,
$length
=
null
)
public
function
bindParam
(
$name
,
&
$var
,
$type
=
PDO
::
PARAM_STR
)
{
return
$this
->
stmt
->
bindParam
(
$name
,
$var
,
$type
,
$length
);
return
$this
->
stmt
->
bindParam
(
$name
,
$var
,
$type
);
}
/**
...
...
Console
@
4200b4bc
Subproject commit 4200b4bc95ae3c1b03d943cd875277e35a17898a
doctrine-build-common
@
efa94de2
Subproject commit efa94de25beef4aefaeb7972c122798f9876fc39
doctrine-common
@
17e77400
Subproject commit 17e774007b98beb2e253e645260e0f9c32f4c936
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