System: II5 with php4.1.0 and Access database
Script:
<?
$db_connstr = "DRIVER={Microsoft Access Driver (.mdb)}; DBQ=".realpath("???.mdb");
$db_con = new COM("ADODB.Connection");
$db_con->open($db_connstr);
query="SELECT FROM FILE ";
$rs=$db_con->execute($query);
.....
$rs->Close();
$db_con1->Close();
?>
Question:
After retrieve the data sucessfully, the record-lock file ???.ldb is still left. How can I get rid of it automatically?
Thanks.