Skip to content

Commit

Permalink
Update Statement.php
Browse files Browse the repository at this point in the history
Signed-off-by: Olivier MELLINGER <[email protected]>
  • Loading branch information
parktrip authored Jan 31, 2023
1 parent 51767fe commit 1963328
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions src/Adapter/Driver/Oci8/Statement.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,23 @@

use function is_array;
use function is_string;
use function oci_bind_by_name;
use function oci_error;
use function oci_execute;
use function oci_new_descriptor;
use function oci_parse;
use function oci_statement_type;
use function sprintf;

use const OCI_B_CLOB;
use const OCI_COMMIT_ON_SUCCESS;
use const OCI_DTYPE_LOB;
use const OCI_NO_AUTO_COMMIT;
use const OCI_TEMP_CLOB;
use const SQLT_BIN;
use const SQLT_CHR;
use const SQLT_INT;

class Statement implements StatementInterface, Profiler\ProfilerAwareInterface
{
/** @var resource */
Expand All @@ -34,11 +49,12 @@ class Statement implements StatementInterface, Profiler\ProfilerAwareInterface

/** @var resource */
protected $resource;

/**
* @var bool
* @internal
* @deprecated
*
* @var bool
*/
public $parametersBound;

Expand Down

0 comments on commit 1963328

Please sign in to comment.