Finally i have used it
my $count = $DB->table("Changes")->do_query(qq|SELECT COUNT(*) FROM your_table|)->fetchrow;
and it works fine; but how to spell it for more than one value?
my ($title, $rc) = $DB->table("Changes")->do_query(qq|SELECT title, reply_count FROM thread WHERE threadid = '$t'|)->fetchrow;
Ok, it works. :)
my $count = $DB->table("Changes")->do_query(qq|SELECT COUNT(*) FROM your_table|)->fetchrow;
and it works fine; but how to spell it for more than one value?
my ($title, $rc) = $DB->table("Changes")->do_query(qq|SELECT title, reply_count FROM thread WHERE threadid = '$t'|)->fetchrow;
Ok, it works. :)