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
125e0534
Commit
125e0534
authored
Jul 07, 2012
by
ivan
Committed by
Benjamin Eberlei
Jul 29, 2012
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
134c9f42
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
2 deletions
+4
-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
No files found.
lib/Doctrine/DBAL/Statement.php
View file @
125e0534
...
...
@@ -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
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