Doctrine


Doctrine\DBAL\Driver\OCI8\OCI8Statement
/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php at line 32

Class OCI8Statement

OCI8Statement
All Implemented Interfaces:
Driver Statement

public class OCI8Statement

The OCI8 implementation of the Statement interface.

Since:
2.0
Author:
Roman Borschel

Constructor Summary

OCI8Statement(resource dbh, string statement)

Creates a new OCI8Statement that uses the given connection handle and SQL statement.

Method Summary
void

bindParam(mixed column, mixed variable, mixed type)

{@inheritdoc}

void

bindValue(mixed param, mixed value, mixed type)

{@inheritdoc}

boolean

closeCursor()

Closes the cursor, enabling the statement to be executed again.

void

columnCount()

{@inheritdoc}

void

errorCode()

{@inheritdoc}

void

errorInfo()

{@inheritdoc}

void

execute(mixed params)

{@inheritdoc}

void

fetch(mixed fetchStyle)

{@inheritdoc}

void

fetchAll(mixed fetchStyle)

{@inheritdoc}

void

fetchColumn(mixed columnIndex)

{@inheritdoc}

void

rowCount()

{@inheritdoc}

Constructor Detail

/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php at line 51

OCI8Statement

public OCI8Statement(resource dbh, string statement)

Creates a new OCI8Statement that uses the given connection handle and SQL statement.

Parameters:
dbh - The connection handle.
statement - The SQL statement.

Method Detail

/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php at line 87

bindParam

public void bindParam(mixed column, mixed variable, mixed type)


/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php at line 79

bindValue

public void bindValue(mixed param, mixed value, mixed type)


/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php at line 99

closeCursor

public boolean closeCursor()

Closes the cursor, enabling the statement to be executed again.

Returns:
Returns TRUE on success or FALSE on failure.

/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php at line 107

columnCount

public void columnCount()


/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php at line 115

errorCode

public void errorCode()


/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php at line 127

errorInfo

public void errorInfo()


/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php at line 135

execute

public void execute(mixed params)


/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php at line 158

fetch

public void fetch(mixed fetchStyle)


/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php at line 170

fetchAll

public void fetchAll(mixed fetchStyle)


/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php at line 185

fetchColumn

public void fetchColumn(mixed columnIndex)


/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php at line 194

rowCount

public void rowCount()


Doctrine