- or download this
my @rows = $sth->fetchrow_array; <--- Reads the first row.
You never print it, though.
...
structure to do something
equivalent, but there's
no need for that either.
- or download this
my $dbh = DBI->connect(
"DBI:ODBC:mydsn",
...
$sth->finish();
$dbh->disconnect();
- or download this
my $dbh = DBI->connect(
"DBI:ODBC:mydsn",
...
$sth->finish();
$dbh->disconnect();