X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXSql%2Fmysql.pm;h=ff708da61f038ba76f6d4b6d16288672a388131e;hb=dabf8497c51068614efdd147f35c0a143f547424;hp=6dc15d0d516f419d89e0d1eb9b70b3e618b1a827;hpb=b9dffeff7239952814342dad19db3a51def6fab7;p=spider.git diff --git a/perl/DXSql/mysql.pm b/perl/DXSql/mysql.pm index 6dc15d0d..ff708da6 100644 --- a/perl/DXSql/mysql.pm +++ b/perl/DXSql/mysql.pm @@ -3,7 +3,7 @@ # # Stuff like table creates and (later) alters # -# $Id$ +# # # Copyright (c) 2005 Dirk Koopman G1TLH # @@ -22,7 +22,9 @@ sub show_tables my $sth = $self->prepare($s); $sth->execute; my @out; - push @out, $sth->fetchrow_array; + while (my @t = $sth->fetchrow_array) { + push @out, @t; + } $sth->finish; return @out; }