Have you tried:

foreach (@$Z) {
  print join ",  ", @$_;
  print "\n";
}

Although this might be more useful:

foreach (@$Z) {
  foreach(@$_) {
    print "$_,  ";
  }
  print "\n";
}

Looks easy eh?  :)

The DBI does have other ways of returning data, which
sometimes is more effective/easier.  Depends on what you
are doing really.

Jonathan Paton

__________________________________________________
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to