- or download this
my $dbh = DBI->connect("DBI::ODBC ... etc $dsn")
or die("Couldn't connect to $dsn: $DBI::errstr\n");
- or download this
my $sth = $dbh->prepare("INSERT INTO table VALUES (value1, value2, val
+ue3)");
- or download this
my $sth = $dbh->prepare("INSERT INTO table VALUES (?, ?, ?)");
- or download this
$sth->execute($foo, $bar, $baz);