RE: Displaying Hash key/values if you don't know what they are

2009-11-18 Thread Tobias Hoellrich
By the way, do yourself a favor and install Data::Dumper and then use it as follows: use Data::Dumper; ... my @results = $mySQL->runQuery("Select A,B from tablename;"); ... print Dumper(\...@results); Data::Dumper will do its best to dump everything that's

Re: Displaying Hash key/values if you don't know what they are

2009-11-18 Thread Mark Leighton
From what I see here, $rows is a hash reference, therefore: use strict; use warnings; my $mySQL = SQLfunctions->new; $mySQL->createSQLConnection("localhost\\Company", "Import"); my @results = $mySQL->runQuery("Select A,B from tablename;"); foreach my $row ( @results ) { foreach my $column

RE: need help installing guitest

2009-11-18 Thread Brian Raven
From: perl-win32-users-boun...@listserv.activestate.com [mailto:perl-win32-users-boun...@listserv.activestate.com] On Behalf Of Daniel Burgaud Sent: 18 November 2009 13:52 To: Perl-Win32-Users Subject: need help installing guitest > hi > > After a reinstall of windows xp, i reinstalled perl as w

need help installing guitest

2009-11-18 Thread Daniel Burgaud
hi After a reinstall of windows xp, i reinstalled perl as well.. now comes the fun part: I could not install Win32-guitest. PPM is no help either.. I've already added the other reposities and guitest isnt there. Currently, I just dumped my old perl installation into the new xp system. but im stu