return @res ? $res[0] : undef;
}
-sub _sql_maker_args {
+sub _sql_maker_opts {
my ($self) = @_;
- return (
+ return {
limit_dialect => 'FetchFirst',
name_sep => $self->_dbh->get_info(41)
- );
+ };
}
1;
This class implements support specific to DB2/400 over ODBC, including
auto-increment primary keys, SQL::Abstract::Limit dialect, and name separator
-for for connections using either SQL naming or System naming.
+for connections using either SQL naming or System naming.
=head1 AUTHORS