in reply to Help with MySQL SELECT into multidimensional array

btongeorge:

Try something like this (untested, etc.):

#!/usr/bin/perl use strict; use warnings; use DBI; my $DB=DBI->connect( ..fill this in.. ); my $data = $DB->selectall_arrayref("select ..."); print "Third column of fourth row is: $$data[3][2]\n";

...roboticus

When your only tool is a hammer, all problems look like your thumb.