
FishMonger
Veteran
Oct 10, 2010, 1:36 PM
Views: 2031
|
|
Re: [miniCruzer] SQLite 'SELECT' Function
|
|
|
$all is a reference to an AoA (array of arrays), which means that the value of each array element is a reference to another array. Use Data::Dumper to output the data structure and from there you should see how to dereference it.
use Data::Dumper; print Dumper $all;
(This post was edited by FishMonger on Oct 10, 2010, 1:36 PM)
|