in reply to DBI, SQL and Dates

Because this line...
$dbhstmt->execute( '$SuStCo_strID', '$date' );
does not interpolate the values... you need to use double-quotes (or none at all) for the variables to be interpolated correctly.

-fp