/* }}} */
/* {{{ proto bool ocicancel(resource stmt)
- Prepare a new row of data for reading */
+ Cancel reading from a cursor */
PHP_FUNCTION(ocicancel)
{
/* }}} */
-/* {{{ proto int ocifetchstatement(resource stmt, array &output[, int skip][, int maxrows][, int flags])
+/* {{{ proto int ocifetchstatement(resource stmt, array &output[, int skip[, int maxrows[, int flags]]])
Fetch all rows of result data into an array */
-
PHP_FUNCTION(ocifetchstatement)
{
zval **stmt, **array, *element, **zskip, **zmaxrows, **zflags, *tmp;
/* }}} */
-/* {{{ proto int ocinewcursor(resource conn)
+/* {{{ proto resource ocinewcursor(resource conn)
Return a new cursor (Statement-Handle) - use this to bind ref-cursors! */
-
PHP_FUNCTION(ocinewcursor)
{
zval **conn;