I have following script:
<?
$db=ifx_connect("db","uid","pwd");

$result=ifx_query("begin work",$db);
$result=ifx_query("insert into m_test1 (i) values('1');", $db);
$result=ifx_query("select * from m_test1;", $db);
while($row=ifx_fetch_row($result)) {
        echo($row['i']);
}
$result=ifx_query("rollback work;", $db);
echo("rollback");
$result=ifx_query("select * from m_test1;", $db);
while($row=ifx_fetch_row($result)) {
        echo($row['i']);
}
ifx_close($db);

?>


If i dont execute $result=ifx_query("rollback work;", $db); and just call
ifx_close session is not closed and autmatic rollback is not execute (as it
must be) but connection to Informix database stays with lock on this row.

Usualy you must have rollback or commit; But to avoid problems with bad code
or other coding probs after calling ifx_close() session must be rolled back
and closed.

What is solution for this case?

Martins Junkers



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to