Skip to content

Commit 1963328

Browse files
authored
Update Statement.php
Signed-off-by: Olivier MELLINGER <[email protected]>
1 parent 51767fe commit 1963328

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed

src/Adapter/Driver/Oci8/Statement.php

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,23 @@
99

1010
use function is_array;
1111
use function is_string;
12+
use function oci_bind_by_name;
13+
use function oci_error;
14+
use function oci_execute;
15+
use function oci_new_descriptor;
16+
use function oci_parse;
17+
use function oci_statement_type;
1218
use function sprintf;
1319

20+
use const OCI_B_CLOB;
21+
use const OCI_COMMIT_ON_SUCCESS;
22+
use const OCI_DTYPE_LOB;
23+
use const OCI_NO_AUTO_COMMIT;
24+
use const OCI_TEMP_CLOB;
25+
use const SQLT_BIN;
26+
use const SQLT_CHR;
27+
use const SQLT_INT;
28+
1429
class Statement implements StatementInterface, Profiler\ProfilerAwareInterface
1530
{
1631
/** @var resource */
@@ -34,11 +49,12 @@ class Statement implements StatementInterface, Profiler\ProfilerAwareInterface
3449

3550
/** @var resource */
3651
protected $resource;
37-
52+
3853
/**
39-
* @var bool
4054
* @internal
4155
* @deprecated
56+
*
57+
* @var bool
4258
*/
4359
public $parametersBound;
4460

0 commit comments

Comments
 (0)