Re: MS Access, scripts clashing



I found the solution.

The solution was to use transactions.

Example:
$dbh->beginwork;
$sth->execute($msg) or die "Could not execute"
$dbh->commit;

.