Hi,

When a user stop a process, with the stop button or click in another link.
Php popup a mensage "Access Violation".

I use php4.0.5, apache 1.3.9, ms sql server 7, odbc , winnt4.

All most this occours in a query execution. I use a class phpodb.php (from 
www.zend.com - code galery)to access the odbc conection.
I would like to now, if this is the cause of the access violation.

see this sample:

$dbBook = new PHPDBObject;
$dbBook->opendb();  //    conect with database
$sSQL = "select AUTHOR,TITLE from BOOKS order by TITLE";
$dbBook->openrs($sSQL);  //      execute query
$dbBook->movetofirst();
while (!$dbBook->eof()){
   $sAuthor = $dbBook->("AUTHOR");   //   get colum value from table
   $sTitle = $dbBook->("TITLE");
   $dbBook->movetonext();
   print "$sTitle - $sAuthor <br>\n";
}
$dbBook->free();   //   clear result set
$dbBook->close(); //   close dbconection

Please, i dont understand that is happen here.
Excuse-me my bad english.

Jorge Ribarr
from Brazil

Reply via email to