I need some help with handling null values in the database using perl. My query say returns 8 records If certain attributes are missing how do i handle it in the program
MichaelBluejay
5:52 pm on Jun 19, 2004 (gmt 0)
Perl considers a variable to be True if it has any assigned value (besides 0). So, for example:
if ($variable) { print "I have a value."; } else { print "Variable not defined." }