Subject: | pass limit_dialect of class to avoid having to pass it |
The &search_where routine should pass the class to SQL::Abstract::Limit
before %$attr, so that if it is not given there, SQL::Abstract::Limit
can use its voodoo to inspect the CDBI class to determine the propr dialect.
my $sql = SQL::Abstract::Limit->new(limit_dialect => $class, %$attr);
This would let most users skip providing the limit_dialect for limited
searches.
--
rjbs