in reply to DBI dots
The result is that my scratch table had a new row with 'hello.world' in it.my $sth = $dbh->prepare('INSERT INTO scratch SET text = ?'); $sth->execute('hello.world'); $sth->finish();
Otherwise, you might want to examine $DBI::errstr or set the RaiseError flags in the DBI constructor.
|
|---|