sql >> Base de Datos >  >> RDS >> Oracle

Valor de retorno de oci_parse

podría usar oci_fetch :

// parse/bind your statement

if (oci_fetch($your_statement)) {
    ... // do something when there is rows
}    
else {
    ... // do something when there is no rows
}