in reply to Re: Crummy Characters in Access Table name (DBI)in thread Crummy Characters in Access Table name (DBI)
$qtable=$dbh->quote_identifier($table); $sql = "SELECT * FROM $qtable"; $sth = $dbh->prepare( $sql ) or die; $sth->execute(); [download]