- or download this
$dbh = DBI->connect('dbi:ODBC:DSN', 'user', 'password') || die ("Can't
+ connect to database : ",$DBI::errstr);
- or download this
$sql = $dbh->prepare ("SELECT field FROM table") or die ("Unable t
+o prepare statement: ",$DBI::errstr);
- or download this
$sql->execute()or die ("Unable to execute get_servertime : ",$DBI:
+:errstr);
- or download this
@l_row = $sql->fetchrow_array;
- or download this
$dbh->disconnect