Lines Matching refs:invokedstatement

2532 	php_oci_statement *invokedstatement;  /* statement this function was invoked with */  in php_oci_fetch_row()  local
2592 PHP_OCI_ZVAL_TO_STATEMENT(z_statement, invokedstatement); in php_oci_fetch_row()
2594 if (invokedstatement->impres_flag == PHP_OCI_IMPRES_NO_CHILDREN || in php_oci_fetch_row()
2595 invokedstatement->impres_flag == PHP_OCI_IMPRES_IS_CHILD) { in php_oci_fetch_row()
2597 statement = invokedstatement; in php_oci_fetch_row()
2598 } else if (invokedstatement->impres_flag == PHP_OCI_IMPRES_HAS_CHILDREN) { in php_oci_fetch_row()
2600 statement = (php_oci_statement *)invokedstatement->impres_child_stmt; in php_oci_fetch_row()
2605 PHP_OCI_CALL_RETURN(errstatus, OCIAttrGet, ((dvoid *)invokedstatement->stmt, OCI_HTYPE_STMT, in php_oci_fetch_row()
2606 (dvoid *) &invokedstatement->impres_count, in php_oci_fetch_row()
2607 (ub4 *)NULL, OCI_ATTR_IMPLICIT_RESULT_COUNT, invokedstatement->err)); in php_oci_fetch_row()
2611 if (invokedstatement->impres_count > 0) { in php_oci_fetch_row()
2613 statement = php_oci_get_implicit_resultset(invokedstatement); in php_oci_fetch_row()
2616 invokedstatement->impres_count--; in php_oci_fetch_row()
2617 invokedstatement->impres_child_stmt = (struct php_oci_statement *)statement; in php_oci_fetch_row()
2618 invokedstatement->impres_flag = PHP_OCI_IMPRES_HAS_CHILDREN; in php_oci_fetch_row()
2620 statement = invokedstatement; /* didn't find Implicit Result Sets */ in php_oci_fetch_row()
2621 invokedstatement->impres_flag = PHP_OCI_IMPRES_NO_CHILDREN; /* Don't bother checking again */ in php_oci_fetch_row()
2627 if (invokedstatement->impres_count > 0) { in php_oci_fetch_row()
2629 statement = php_oci_get_implicit_resultset(invokedstatement); in php_oci_fetch_row()
2632 invokedstatement->impres_count--; in php_oci_fetch_row()
2633 invokedstatement->impres_child_stmt = (struct php_oci_statement *)statement; in php_oci_fetch_row()