- or download this
my $stmt = "SELECT firstname, lastname, city, state FROM addresses ORD
+ER BY lastname";
my $data = $self->dbh->selectall_arrayref($stmt, {Slice => {}});
- or download this
[
{
...
'city' => 'Miami'
}
];
- or download this
[
...
'state' => 'FL'
}
];
- or download this
use Tie::IxHash;
my $data = {};
...
my $stmt = "SELECT firstname, lastname, city, state FROM addresses ORD
+ER BY lastname";
$data = $self->dbh->selectall_arrayref($stmt, {Slice => {}});