|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2001-11-08 01:42 UTC] leo_ngsungchun at sinaman dot com
I am using a database class to manipulate data.
I found that when the problem is terminated in
the class, the transaction will be committed,
even I've set the mode to OCI_DEFAULT.
The same case occured in both Win2k and Linux with
Oracle and Apache.
////////////////////////////////////////////////
// Schema
////////////////////////////////////////////////
/*
create table test (
id varchar2(5) not null,
name varchar2(10),
primary key (id)
);
////////////////////////////////////////////////
// Source Code
///////////////////////////////////////////////
class Database {
var $conn, $stmt, $row_data;
function Database()
{
$DB_SERVER = "";
$DATABASE = "";
$DB_USER = "test";
$DB_PASSWORD = "test";
putenv($DATABASE);
$this->conn = OCILogon($DB_USER, $DB_PASSWORD, $DB_SERVER);
if ($this->conn == false) {
die("Cannot connect to server");
}
}
function Query($sql)
{
$this->stmt = OCIParse($this->conn, $sql);
if ($this->stmt == false) {
die("Statement Error");
}
if (OCIExecute($this->stmt, OCI_DEFAULT) == false) {
die("Cannot Execute Statment");
}
}
function Commit()
{
OCICommit($this->conn);
}
function terminate()
{
die(" Not OK :( ");
}
}
$db = new Database();
$sql = "insert into test (id, name) values ('1', '1')";
$db->Query($sql);
$db->terminate(); // This will commit the transaction,
// even the program is terminated.
die(" OK :) "); // If the program is terminated here,
// the transaction is rollbacked.
$db->Commit();
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 09:00:01 2025 UTC |
I am using a database class to manipulate data. I found that when the program is terminated in the class, the transaction will be committed, even I've set the mode to OCI_DEFAULT. The same case occured in both Win2k and Linux with Oracle and Apache. //////////////////////////////////////////////// // Schema //////////////////////////////////////////////// /* create table test ( id varchar2(5) not null, name varchar2(10), primary key (id) ); //////////////////////////////////////////////// // Source Code /////////////////////////////////////////////// class Database { var $conn, $stmt, $row_data; function Database() { $DB_SERVER = ""; $DATABASE = ""; $DB_USER = "test"; $DB_PASSWORD = "test"; putenv($DATABASE); $this->conn = OCILogon($DB_USER, $DB_PASSWORD, $DB_SERVER); if ($this->conn == false) { die("Cannot connect to server"); } } function Query($sql) { $this->stmt = OCIParse($this->conn, $sql); if ($this->stmt == false) { die("Statement Error"); } if (OCIExecute($this->stmt, OCI_DEFAULT) == false) { die("Cannot Execute Statment"); } } function Commit() { OCICommit($this->conn); } function terminate() { die(" Not OK :( "); } } $db = new Database(); $sql = "insert into test (id, name) values ('1', '1')"; $db->Query($sql); $db->terminate(); // This will commit the transaction, // even the program is terminated. die(" OK :) "); // If the program is terminated here, // the transaction is rollbacked. $db->Commit();