The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use Net::Drizzle;

&basic;exit;

sub basic {
    my $con = Net::Drizzle::Connection->new;
    $con->add_options(Net::Drizzle::DRIZZLE_CON_MYSQL);
    $con->set_db("information_schema");
    my $s = $con->query_str("SELECT table_schema,table_name FROM tables");
}