Whenever I use OCIBindByName I get
Warning: OCIStmtExecute: ORA-03113: end-of-file on communication channel in /usr/local/apache/htdocs/regist.php3 on line 45 My code is as:
42>$conn=OCILogon(\"usr\",\"pwd\",\"myhost\")
43>$stmt=ociparse($conn,\"select empname from emp_master where empcode=:code\");
44>OCIBindByName($stmt,\":code\",&$e_code,9);
45>OCIExecute($stmt);
if I comment out line 45 & put some value instead of :code I get the desired result.
Any help in this regard will be greatly appreceited.
thks.