Edit report at http://bugs.php.net/bug.php?id=51540&edit=1
ID: 51540 Updated by: [email protected] Reported by: houssam dot asaad at hiast dot edu dot sy Summary: insert data -Status: Open +Status: Bogus Type: Bug Package: OCI8 related Operating System: win2003 server PHP Version: 5.2.13 -Assigned To: +Assigned To: sixd New Comment: Sorry, but your problem does not imply a bug in PHP itself. For a list of more appropriate places to ask for help using PHP, please visit http://www.php.net/support.php as this bug system is not the appropriate forum for asking support questions. Due to the volume of reports we can not explain in detail here why your report is not a bug. The support channels will be able to provide an explanation for you. Thank you for your interest in PHP. I believe you also asked this question on http://forums.oracle.com/forums/message.jspa?messageID=4218368 Please ask further questions using that forum. Previous Comments: ------------------------------------------------------------------------ [2010-04-12 11:12:37] houssam dot asaad at hiast dot edu dot sy Description: ------------ i use oci to insert data, but result is nothing Test script: --------------- $conn = oci_connect('username', 'password', 'HOST_IP/orcl', 'AR8MSWIN1256'); $query = 'INSERT INTO STUDENTS (IDNO, START_DATE) VALUES (:idno_v, :startDate_v)'; $stid = oci_parse($conn, $query); $idno = 999; $startDate = date("d-M-y"); oci_bind_by_name($stid, ':idno_v', $idno); oci_bind_by_name($stid, ':startDate_v', $startDate); oci_execute($stid); Expected result: ---------------- show data in STUDENTS table Actual result: -------------- no data inserted ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/bug.php?id=51540&edit=1
