Class Statement

Summary

Fully Qualified Name: Zend\Db\Adapter\Driver\Oci8\Statement
Implements: StatementInterface, ProfilerAwareInterface

Description

Methods

Name Description Defined By
__clone() Perform a deep clone Statement
execute() Execute Statement
getParameterContainer() Statement
getProfiler() Statement
getResource() Get resource Statement
getSql() Get sql Statement
initialize() Initialize Statement
isPrepared() Statement
prepare() Statement
setDriver() Set driver Statement
setParameterContainer() Set Parameter container Statement
setProfiler() Statement
setResource() Set resource Statement
setSql() Set sql Statement

Method Details

__clone()

Perform a deep clone

Returns:

execute()

Execute

Parameter Name Type Description
$parameters null|array|\ParameterContainer

Returns: mixed

getParameterContainer()

Returns: \ParameterContainer

getProfiler()

Returns: null|\Profiler\ProfilerInterface

getResource()

Get resource

Returns: mixed

getSql()

Get sql

Returns: string

initialize()

Initialize

Parameter Name Type Description
$oci8 resource

Returns: self Provides a fluent interface

isPrepared()

Returns: bool

prepare()

Parameter Name Type Description
$sql string

Returns: self Provides a fluent interface

setDriver()

Set driver

Parameter Name Type Description
$driver \Oci8

Returns: self Provides a fluent interface

setParameterContainer()

Set Parameter container

Parameter Name Type Description
$parameterContainer \ParameterContainer

Returns: self Provides a fluent interface

setProfiler()

Parameter Name Type Description
$profiler \Profiler\ProfilerInterface

Returns: self Provides a fluent interface

setResource()

Set resource

Parameter Name Type Description
$oci8Statement resource

Returns: self Provides a fluent interface

setSql()

Set sql

Parameter Name Type Description
$sql string

Returns: self Provides a fluent interface

Top