Help for this page

Select Code to Download


  1. or download this
    use Querylet;
    
    database: dbi:SQLite:dbname=foo.sqlite
    
  2. or download this
    use strict;
    use DBI;
    
    my $dbh = DBI->connect('dbi:SQLite:dbname=foo.sqlite');
    
  3. or download this
    use strict;
    use DBI;
    
    #line 3 "test.querylet"
    my $dbh = DBI->connect('dbi:SQLite:dbname=foo.sqlite');