On Jan 10, 2008 10:50 PM,  <[EMAIL PROTECTED]> wrote:

> Only the content of the first 2 fields is displayed:

In your shoes, I would check that 'use warnings' and 'use strict' are
in place, and other basics, then I'd start debugging at the database.
Check out the tracing facility, documented in the DBI manpage. Trace
level 2 is probably enough for you to see what's happening from the
db's point of view. Is the db getting the right data? Is it giving the
answers you think it should?

    http://search.cpan.org/~timb/DBI/DBI.pm#TRACING

It can also be helpful to step through your code in the Perl debugger.
You can stop at any statement to see what values your variables really
have. That's documented in the perldebug manpage.

    http://perldoc.perl.org/perldebug.html

Good luck with it!

--Tom Phoenix
Stonehenge Perl Training

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to