in reply to CGI::Formbuilder and Class::DBI

I'd say the quickest way is to avoid the complexity of adding Class::DBI to the mix, and use the DBI interface directly:
my $href = $DBH->selectrow_hashref("SELECT f1,f2 FROM t WHERE id = 23" +);

Mark