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
2ec1743e
Unverified
Commit
2ec1743e
authored
Apr 28, 2018
by
Sergei Morozov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Introduced binary binding type to support binary parameters on Oracle
parent
7021bdf7
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
65 additions
and
29 deletions
+65
-29
MysqliStatement.php
lib/Doctrine/DBAL/Driver/Mysqli/MysqliStatement.php
+1
-0
OCI8Statement.php
lib/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php
+27
-8
Statement.php
lib/Doctrine/DBAL/Driver/PDOSqlsrv/Statement.php
+3
-1
PDOStatement.php
lib/Doctrine/DBAL/Driver/PDOStatement.php
+1
-0
SQLAnywhereStatement.php
...Doctrine/DBAL/Driver/SQLAnywhere/SQLAnywhereStatement.php
+1
-0
SQLSrvStatement.php
lib/Doctrine/DBAL/Driver/SQLSrv/SQLSrvStatement.php
+22
-9
ParameterType.php
lib/Doctrine/DBAL/ParameterType.php
+5
-0
BinaryType.php
lib/Doctrine/DBAL/Types/BinaryType.php
+1
-1
BinaryTest.php
tests/Doctrine/Tests/DBAL/Functional/Types/BinaryTest.php
+3
-9
BinaryTest.php
tests/Doctrine/Tests/DBAL/Types/BinaryTest.php
+1
-1
No files found.
lib/Doctrine/DBAL/Driver/Mysqli/MysqliStatement.php
View file @
2ec1743e
...
...
@@ -39,6 +39,7 @@ class MysqliStatement implements \IteratorAggregate, Statement
*/
protected
static
$_paramTypeMap
=
[
ParameterType
::
STRING
=>
's'
,
ParameterType
::
BINARY
=>
's'
,
ParameterType
::
BOOLEAN
=>
'i'
,
ParameterType
::
NULL
=>
's'
,
ParameterType
::
INTEGER
=>
'i'
,
...
...
lib/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php
View file @
2ec1743e
...
...
@@ -25,6 +25,7 @@ use Doctrine\DBAL\FetchMode;
use
Doctrine\DBAL\ParameterType
;
use
IteratorAggregate
;
use
const
OCI_ASSOC
;
use
const
OCI_B_BIN
;
use
const
OCI_B_BLOB
;
use
const
OCI_BOTH
;
use
const
OCI_D_LOB
;
...
...
@@ -35,6 +36,7 @@ use const OCI_RETURN_LOBS;
use
const
OCI_RETURN_NULLS
;
use
const
OCI_TEMP_BLOB
;
use
const
PREG_OFFSET_CAPTURE
;
use
const
SQLT_CHR
;
use
function
array_key_exists
;
use
function
count
;
use
function
implode
;
...
...
@@ -301,18 +303,35 @@ class OCI8Statement implements IteratorAggregate, Statement
$lob
=
oci_new_descriptor
(
$this
->
_dbh
,
OCI_D_LOB
);
$lob
->
writeTemporary
(
$variable
,
OCI_TEMP_BLOB
);
$this
->
boundValues
[
$column
]
=&
$lob
;
return
oci_bind_by_name
(
$this
->
_sth
,
$column
,
$lob
,
-
1
,
OCI_B_BLOB
);
}
elseif
(
$length
!==
null
)
{
$this
->
boundValues
[
$column
]
=&
$variable
;
return
oci_bind_by_name
(
$this
->
_sth
,
$column
,
$variable
,
$length
);
$variable
=&
$lob
;
}
$this
->
boundValues
[
$column
]
=&
$variable
;
return
oci_bind_by_name
(
$this
->
_sth
,
$column
,
$variable
);
return
oci_bind_by_name
(
$this
->
_sth
,
$column
,
$variable
,
$length
??
-
1
,
$this
->
convertParameterType
(
$type
)
);
}
/**
* Converts DBAL parameter type to oci8 parameter type
*/
private
function
convertParameterType
(
int
$type
)
:
int
{
switch
(
$type
)
{
case
ParameterType
::
BINARY
:
return
OCI_B_BIN
;
case
ParameterType
::
LARGE_OBJECT
:
return
OCI_B_BLOB
;
default
:
return
SQLT_CHR
;
}
}
/**
...
...
lib/Doctrine/DBAL/Driver/PDOSqlsrv/Statement.php
View file @
2ec1743e
...
...
@@ -33,7 +33,9 @@ class Statement extends PDOStatement
*/
public
function
bindParam
(
$column
,
&
$variable
,
$type
=
ParameterType
::
STRING
,
$length
=
null
,
$driverOptions
=
null
)
{
if
(
$type
===
ParameterType
::
LARGE_OBJECT
&&
$driverOptions
===
null
)
{
if
((
$type
===
ParameterType
::
LARGE_OBJECT
||
$type
===
ParameterType
::
BINARY
)
&&
$driverOptions
===
null
)
{
$driverOptions
=
PDO
::
SQLSRV_ENCODING_BINARY
;
}
...
...
lib/Doctrine/DBAL/Driver/PDOStatement.php
View file @
2ec1743e
...
...
@@ -41,6 +41,7 @@ class PDOStatement extends \PDOStatement implements Statement
ParameterType
::
NULL
=>
PDO
::
PARAM_NULL
,
ParameterType
::
INTEGER
=>
PDO
::
PARAM_INT
,
ParameterType
::
STRING
=>
PDO
::
PARAM_STR
,
ParameterType
::
BINARY
=>
PDO
::
PARAM_LOB
,
ParameterType
::
LARGE_OBJECT
=>
PDO
::
PARAM_LOB
,
ParameterType
::
BOOLEAN
=>
PDO
::
PARAM_BOOL
,
];
...
...
lib/Doctrine/DBAL/Driver/SQLAnywhere/SQLAnywhereStatement.php
View file @
2ec1743e
...
...
@@ -132,6 +132,7 @@ class SQLAnywhereStatement implements IteratorAggregate, Statement
case
ParameterType
::
NULL
:
case
ParameterType
::
STRING
:
case
ParameterType
::
BINARY
:
$type
=
's'
;
break
;
...
...
lib/Doctrine/DBAL/Driver/SQLSrv/SQLSrvStatement.php
View file @
2ec1743e
...
...
@@ -44,6 +44,7 @@ use function sqlsrv_get_field;
use
function
sqlsrv_next_result
;
use
function
sqlsrv_num_fields
;
use
function
SQLSRV_PHPTYPE_STREAM
;
use
function
SQLSRV_PHPTYPE_STRING
;
use
function
sqlsrv_prepare
;
use
function
sqlsrv_rows_affected
;
use
function
SQLSRV_SQLTYPE_VARBINARY
;
...
...
@@ -283,15 +284,27 @@ class SQLSrvStatement implements IteratorAggregate, Statement
$params
=
[];
foreach
(
$this
->
variables
as
$column
=>
&
$variable
)
{
if
(
$this
->
types
[
$column
]
===
ParameterType
::
LARGE_OBJECT
)
{
$params
[
$column
-
1
]
=
[
&
$variable
,
SQLSRV_PARAM_IN
,
SQLSRV_PHPTYPE_STREAM
(
SQLSRV_ENC_BINARY
),
SQLSRV_SQLTYPE_VARBINARY
(
'max'
),
];
}
else
{
$params
[
$column
-
1
]
=&
$variable
;
switch
(
$this
->
types
[
$column
])
{
case
ParameterType
::
LARGE_OBJECT
:
$params
[
$column
-
1
]
=
[
&
$variable
,
SQLSRV_PARAM_IN
,
SQLSRV_PHPTYPE_STREAM
(
SQLSRV_ENC_BINARY
),
SQLSRV_SQLTYPE_VARBINARY
(
'max'
),
];
break
;
case
ParameterType
::
BINARY
:
$params
[
$column
-
1
]
=
[
&
$variable
,
SQLSRV_PARAM_IN
,
SQLSRV_PHPTYPE_STRING
(
SQLSRV_ENC_BINARY
),
];
break
;
default
:
$params
[
$column
-
1
]
=&
$variable
;
break
;
}
}
...
...
lib/Doctrine/DBAL/ParameterType.php
View file @
2ec1743e
...
...
@@ -42,6 +42,11 @@ final class ParameterType
*/
public
const
BOOLEAN
=
\PDO
::
PARAM_BOOL
;
/**
* Represents a binary string data type.
*/
public
const
BINARY
=
16
;
/**
* This class cannot be instantiated.
*/
...
...
lib/Doctrine/DBAL/Types/BinaryType.php
View file @
2ec1743e
...
...
@@ -79,6 +79,6 @@ class BinaryType extends Type
*/
public
function
getBindingType
()
{
return
ParameterType
::
LARGE_OBJECT
;
return
ParameterType
::
BINARY
;
}
}
tests/Doctrine/Tests/DBAL/Functional/Types/BinaryTest.php
View file @
2ec1743e
...
...
@@ -5,7 +5,6 @@ declare(strict_types=1);
namespace
Doctrine\Tests\DBAL\Functional\Types
;
use
Doctrine\DBAL\Driver\IBMDB2\DB2Driver
;
use
Doctrine\DBAL\Driver\OCI8\Driver
as
OCI8Driver
;
use
Doctrine\DBAL\ParameterType
;
use
Doctrine\DBAL\Schema\Table
;
use
Doctrine\Tests\DbalFunctionalTestCase
;
...
...
@@ -20,11 +19,6 @@ class BinaryTest extends DbalFunctionalTestCase
{
parent
::
setUp
();
/** @see https://github.com/doctrine/dbal/issues/2787 */
if
(
$this
->
_conn
->
getDriver
()
instanceof
OCI8Driver
)
{
$this
->
markTestSkipped
(
'Filtering by binary fields is currently not supported on Oracle'
);
}
$table
=
new
Table
(
'binary_table'
);
$table
->
addColumn
(
'id'
,
'binary'
,
[
'length'
=>
16
,
...
...
@@ -64,8 +58,8 @@ class BinaryTest extends DbalFunctionalTestCase
'id'
=>
$id
,
'val'
=>
$value
,
],
[
ParameterType
::
LARGE_OBJECT
,
ParameterType
::
LARGE_OBJECT
,
ParameterType
::
BINARY
,
ParameterType
::
BINARY
,
]);
self
::
assertSame
(
1
,
$result
);
...
...
@@ -77,7 +71,7 @@ class BinaryTest extends DbalFunctionalTestCase
'SELECT val FROM binary_table WHERE id = ?'
,
[
$id
],
0
,
[
ParameterType
::
LARGE_OBJECT
]
[
ParameterType
::
BINARY
]
);
// Currently, `BinaryType` mistakenly converts string values fetched from the DB to a stream.
...
...
tests/Doctrine/Tests/DBAL/Types/BinaryTest.php
View file @
2ec1743e
...
...
@@ -32,7 +32,7 @@ class BinaryTest extends \Doctrine\Tests\DbalTestCase
public
function
testReturnsBindingType
()
{
self
::
assertSame
(
ParameterType
::
LARGE_OBJECT
,
$this
->
type
->
getBindingType
());
self
::
assertSame
(
ParameterType
::
BINARY
,
$this
->
type
->
getBindingType
());
}
public
function
testReturnsName
()
...
...
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