Skip to content

Instantly share code, notes, and snippets.

@futoase
Created November 5, 2013 10:37
Show Gist options
  • Select an option

  • Save futoase/7317074 to your computer and use it in GitHub Desktop.

Select an option

Save futoase/7317074 to your computer and use it in GitHub Desktop.
code snippet of DBIx::Sunny
use DBIx::Sunny;
use Data::Dumper;
my $dbh = DBIx::Sunny->connect(
'dbi:mysql:test;hostname=127.0.0.1',
'user',
'password');
my $rows = $dbh->select_all('SELECT * FROM users');
my $num = @rows;
print Dumper $rows;
print "$num";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment