Database is opened using vb 6 appilcation
The php code below fails with the following error
Warning: SQL error: [Microsoft][ODBC Microsoft Access Driver] Could not use '(unknown)'; file already in use., SQL state S1000 in SQLConnect
<?php
$db_connection = odbc_connect('PTTracker','','');
$query = "select * from employee";
$result = odbc_exec ( $db_connection, $query);
odbc_result_all($result, "BGCOLOR='#AAFFAA' border=3 width=30% bordercolordark='#FF0000'");
?>
Is there anyway around the locking done by the VB application