PHP  
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  
<ocicolumntyperawocidefinebyname>
Last updated: Mon, 16 Jul 2012

ocicommit

(PHP 3 >= 3.0.7, PHP 4, PHP 5)

ocicommit -- ÌύδִÐеÄÊÂÎñ´¦Àí

ÃèÊö

bool ocicommit ( resource connection )

ocicommit() Ìá½» Oracle Á¬½Ó connection ÕýÔÚÔËÐеÄÊÂÎñ´¦ÀíÉÏËùÓÐδִÐеÄÓï¾ä¡£

ÏÂÃæµÄÀý×Ó˵Ã÷ÁË ocicommit() µÄÓ÷¨¡£

例子 1. ocicommit()

<?php
  
// Login to Oracle server
  
$conn = OCILogon('scott', 'tiger');

  
// Parse SQL
  
$stmt = OCIParse($conn, "INSERT INTO employees (name, surname) VALUES ('Maxim', 'Maletsky')");

  
// Execute statement
  
OCIExecute($stmt);

  
// Commit transaction
  
$committed = OCICommit($conn);

  
// Test whether commit was successful. If error occurred, return error message
  
if (!$committed) {
      
$error = OCIError($conn);
       echo
'Commit failed. Oracle reports: ' . $error['message'];
   }

  
// Close connection
  
OCILogoff($conn);
?>

²Î¼û ocirollback()¡£




<ocicolumntyperawocidefinebyname>
 Last updated: Mon, 16 Jul 2012
 
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://manual.phpv.net/
Last updated: Thu Jul 7 19:13:47 2005 CST