tony2001 Mon Mar 5 20:46:09 2007 UTC
Modified files: /phpdoc/en/reference/oci8/functions oci-bind-by-name.xml Log: fix indenting http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/oci8/functions/oci-bind-by-name.xml?r1=1.12&r2=1.13&diff_format=u Index: phpdoc/en/reference/oci8/functions/oci-bind-by-name.xml diff -u phpdoc/en/reference/oci8/functions/oci-bind-by-name.xml:1.12 phpdoc/en/reference/oci8/functions/oci-bind-by-name.xml:1.13 --- phpdoc/en/reference/oci8/functions/oci-bind-by-name.xml:1.12 Mon Feb 5 03:10:17 2007 +++ phpdoc/en/reference/oci8/functions/oci-bind-by-name.xml Mon Mar 5 20:46:09 2007 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.12 $ --> +<!-- $Revision: 1.13 $ --> <refentry id="function.oci-bind-by-name"> <refnamediv> <refname>oci_bind_by_name</refname> @@ -168,13 +168,13 @@ $stmt = oci_parse($conn, " INSERT INTO emp (empno, ename) - VALUES + VALUES (:empno,:ename) RETURNING ROWID INTO :rid - "); + "); $data = array( 1111 => "Larry", @@ -195,7 +195,7 @@ sal = :sal WHERE ROWID = :rid - "); + "); oci_bind_by_name($update, ":rid", $rowid, -1, OCI_B_ROWID); oci_bind_by_name($update, ":sal", $sal, 32); @@ -220,7 +220,7 @@ empno IN (1111,2222,3333) - "); + "); oci_execute($stmt); while ($row = oci_fetch_assoc($stmt)) { @@ -237,7 +237,7 @@ empno IN (1111,2222,3333) - "); + "); oci_execute($stmt); oci_free_statement($stmt);