Created
May 10, 2020 22:52
-
-
Save kubrick06010/46351cbc8bb307a7ff234d3a17ed766d to your computer and use it in GitHub Desktop.
Por revisar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use SQL::Abstract; | |
| ... | |
| my @rows = @{$dbh->do("SELECT foo, bar ...", { Slice => {} }, @bind); | |
| foreach my $row (@rows) { say "Got: ".$row->{foo}." -> ".$row->{bar}; } | |
| ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment