Subject: | Minor POD typo |
The Synopsis of Rose::DB::Object::QueryBuilder sais quite a couple of
times:
$sth = $dbh->prepare($sql);
$dbh->execute;
Correct:
$sth = $dbh->prepare($sql);
$sth->execute;
This is a mini issue that just lead to 30 minutes of "what the hell"
until I figured out the obvious. I am so much into RDBO now I quite
rarely use plain DBI anymore. If you find some time, please fix the
docs. Thanks a lot!
Cheers, Martin