RE: [PHP] Help! OCIFetchInto does not work at all

2001-05-17 Thread Sebastian Stadtlich
please try this : OCIFetchInto ($stmt, $row, OCI_ASSOC); usually i also use a second modifier OCI_ASSOC+OCI_RETURN_NULLS sebastian > I'm tryibg to execute a simple query on Oracle: > $cn=OCILogon($DB_USER, $DB_PASSWORD, $DB_NAME); > $stmt=OCIParse($cn,"select *

[PHP] Help! OCIFetchInto does not work at all

2001-05-16 Thread Grishick
I'm tryibg to execute a simple query on Oracle: $cn=OCILogon($DB_USER, $DB_PASSWORD, $DB_NAME); $stmt=OCIParse($cn,"select * from grisha"); OCIExecute($stmt); OCIFetchInto ($stmt, &$row, OCI_ASSOC); But $row is always empty and OCIFetchInto returns nothing. The table is not empty, I can execute t