Oracle
 sql >> Database >  >> RDS >> Oracle

Avvertimento:ocifetch() [function.ocifetch]:ORA-24374:definire non completato prima di recuperare o eseguire e recuperare

Immagino che tu abbia dimenticato il

ociexecute($stmt, OCI_DEFAULT);

Dopo il

$stmt = OCIParse($connect, $query);

E prima del:

while(OCIFetch($stmt))

Quindi sarebbe simile a questo:

//Perform search
$stmt = OCIParse($connect, $query);

// Execute statement
ociexecute($stmt, OCI_DEFAULT);

//And display the results
$counter = 0;
while(OCIFetch($stmt))
{
    $counter++;
...

Altro qui