Transform sql
my $trans = $tclass->new($self, $sql, @args); return $self->SUPER::transform_sql($trans->sql => $trans->args);
Class::DBI hooks into the transform_sql() method in Ima::DBI to provide its own \s-1SQL\s0 extensions. Class::DBI::SQL::Transformer does the heavy lifting of these transformations.
my $trans = $tclass->new($self, $sql, @args);
Create a new transformer for the \s-1SQL\s0 and arguments that will be used with the given object (or class).
my $sql = $trans->sql; my @args = $trans->args;
The transformed \s-1SQL\s0 and args.