in reply to SQL String Escape Special Characters
ormy $quote = $dbh->dbquote( $uname ); my $sql = <<SQLCODE; SELECT uname ,pwd FROM login WHERE uname=$quote SQLCODE
Finally a more obvious question, most DBs are case sensitive on searches, could this be a contributing problem?SELECT uname ,pwd FROM login WHERE uname='leander\@whatever.com' SQLCODE
|
|---|