vote up 1 vote down star

I am running a query 'describe table' and it returns value of 'null' for the 'default' column. However, when I try to print the value from database to an HTML table it is not printing 'null'. It is just always blank.

This is how I am storing the data from database:

@nulls = ();

while (($null) = $sth1->fetchrow_array)
    {
    push (@nulls, $null);
    }

When I print the contents of array @nulls it never prints the literal value of 'null'. It is always blank. Is there a way to overcome this problem?

flag

4 Answers

vote up 10 vote down check

As Chris J said, the null values are returned as undefined values.

If you had warnings enabled, you would have received an "undefined value in print" warning when you printed the values. Using the strict and warnings pragmata can save a lot of time debugging. The diagnostics pragma adds additional explanatory text to the standard warnings and fatal errors.

It's pretty easy to trap and replace the NULL values as they come from the database:

use strict;
use warnings;

my @nulls = ();
while ((my $null) = $sth1->fetchrow_array)
    {
            # before perl 5.10: use the ternary operator.
            push @nulls, defined $null ? $null : 'NULL';

            # perl 5.10 adds the defined-or operator: //
            push @nulls, $null // 'NULL';
    }

Or you could build your @nulls array the same way you show above, and then alter the nulls at display time.

my @pre_5_10  = map { defined $_ ? $_ : 'NULL' } @nulls;
my @perl_5_10 = map { $_ // 'NULL' } @nulls;
link|flag
vote up 7 vote down

From http://search.cpan.org/~timb/DBI-1.607/DBI.pm , it will return null values as 'undef'.

link|flag
vote up 2 vote down

I don't do Perl, but in every other language I've used, you have to test the value for null. If it is null, print out the string literal "null".

link|flag
Not a Perl guy either but in the languages I've used the 'null' from the database is not the same as the 'null' in the language. So care should be taken to test for the database 'null' value and not the language 'null' value. – Jonathon Watney Feb 23 at 4:47
DBI does consistently map between the database null value and Perl's undef value. – ysth Feb 23 at 4:57
vote up 1 vote down

You don't say what database you're using, but you can do it at the SQL level if you don't mind a non-portable solution, e.g., in Oracle:

select NVL(some_column, 'NULL')
from some_table
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.