in reply to Why does my db query return nothing? (was: IS DBI REALLY THAT USELESS ???)

Here's one possible problem:
foreach (@$data){ $res = join (' ', @$_); } # should be...? foreach (@$data) { $res .= "@$_"; # same as join(" ", @$_); }

_____________________________________________________
Jeff[japhy]Pinyan: Perl, regex, and perl hacker, who'd like a (from-home) job
s++=END;++y(;-P)}y js++=;shajsj<++y(p-q)}?print:??;

  • Comment on Re: Why does my db query return nothing? (was: IS DBI REALLY THAT USELESS ???)
  • Download Code