//close the oracle cursor
ora_close($Cursor);
//disconnect.
ora_logoff($Connection);
?>
boolean ora_close(integer cursor)
The ora_close function closes a connection opened by ora_open. See ora_bind for an
example of use.
string ora_columnname(integer cursor, integer column)
The ora_columnname function returns the name of the specified column. Columns are
numbered from zero. See ora_exec for an example of use.
integer ora_columnsize(integer cursor, string column)
The ora_columnsize function returns the size of the specified column. Columns are
numbered from zero. Alternatively, you may specify a column by its name. See
ora_exec for an example of use.
string ora_columntype(integer cursor, integer column)
The ora_columntype function returns the data type of the specified column. Columns
are numbered from zero. Alternatively, you may specify a column by its name. The type
will be one of the following: CHAR, CURSOR, DATE, LONG, LONG RAW, NUMBER, ROWID,
VARCHAR, VARCHAR2. See ora_exec for an example of use.
boolean ora_commit(integer connection)
The ora_commit function commits all the pending transactions on the connection. By
default, all transactions are committed after a call to ora_exec.
boolean ora_commitoff(integer connection)
Use ora_commitoff to turn off automatic commits. By default, PHP commits each
transaction.
boolean ora_commiton(integer connection)
Use ora_commiton to turn on automatic commits. By default, PHP commits each
transaction.