Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    $dbsql->do(q{insert into foo VALUES (1,'hello')});
    my $ra = $dbsql->selectall_arrayref('select * from foo');
    print Dumper($ra);
    
  2. or download this
    use warnings;
    use strict;
    ...
    =cut
    
    print "hello, world!\n";