OCI8Statement
public class OCI8Statement
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 | Closes the cursor, enabling the statement to be executed again. |
void | {@inheritdoc} |
void | {@inheritdoc} |
void | {@inheritdoc} |
void | execute(mixed params) {@inheritdoc} |
void | fetch(mixed fetchStyle) {@inheritdoc} |
void | fetchAll(mixed fetchStyle) {@inheritdoc} |
void | fetchColumn(mixed columnIndex) {@inheritdoc} |
void | rowCount() {@inheritdoc} |
public OCI8Statement(resource dbh, string statement)
Creates a new OCI8Statement that uses the given connection handle and SQL statement.
public void bindParam(mixed column, mixed variable, mixed type)
public void bindValue(mixed param, mixed value, mixed type)
public boolean closeCursor()
Closes the cursor, enabling the statement to be executed again.
public void columnCount()
public void errorCode()
public void errorInfo()
public void execute(mixed params)
public void fetch(mixed fetchStyle)
public void fetchAll(mixed fetchStyle)
public void fetchColumn(mixed columnIndex)
public void rowCount()
The OCI8 implementation of the Statement interface.