in reply to Re^3: Locking Access Records and Database
in thread Locking Access Records and Database
The output is nextprint "\n[lock_table] entry\n\n"; $lock_res = 'unset'; $lock_str = "LOCK TABLES " . $table . " WRITE"; $lock_res = $dbh->do($lock_str); $dberr = $dbh->errstr; print "[lock_table] locking table <$table> with <$lock_str>\nresul +t <$lock_res>\nerror message <$dberr>\n";
As you can see the error string did not contain anything. Any ideas about what to do next?[lock_table] entry [lock_table] locking table <Stock> with <LOCK TABLES Stock WRITE> result <> error message <>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Locking Access Records and Database
by ikegami (Patriarch) on Apr 09, 2008 at 10:32 UTC | |
by merrymonk (Hermit) on Apr 09, 2008 at 14:14 UTC |