in reply to DBI, SQL and Dates
If you want the single quotes, then surround the string with double quotes:
I suggest this, as it's a good idea to have quotes around anything going into SQL, to stop nasty input tricks.$dbhstmt->execute( "'$SuStCo_strID'", "'$date'" );
In Section
Seekers of Perl Wisdom