in reply to Re^4: help figuring out what a section of script does
in thread help figuring out what a section of script does
What do you get running this
poj#!/usr/bin/perl use strict; use DBI; my $dbfile = 'MapTiles.sqlitedb'; my $dbh = DBI->connect("dbi:SQLite:dbname=$dbfile","",""); print join "\n",$dbh->tables;
|
|---|