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
17a265d9
Commit
17a265d9
authored
Jul 07, 2012
by
ivan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bindParam function expects length parameter for oci_bind_by_name oci8
driver function
parent
78dbf289
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
5 deletions
+2
-5
Statement.php
lib/Doctrine/DBAL/Statement.php
+2
-2
Console
lib/vendor/Symfony/Component/Console
+0
-1
doctrine-build-common
lib/vendor/doctrine-build-common
+0
-1
doctrine-common
lib/vendor/doctrine-common
+0
-1
No files found.
lib/Doctrine/DBAL/Statement.php
View file @
17a265d9
...
...
@@ -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
)
public
function
bindParam
(
$name
,
&
$var
,
$type
=
PDO
::
PARAM_STR
,
$length
=
null
)
{
return
$this
->
stmt
->
bindParam
(
$name
,
$var
,
$type
);
return
$this
->
stmt
->
bindParam
(
$name
,
$var
,
$type
,
$length
);
}
/**
...
...
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