Minor op reorder in ::ResultSet::related_resultset
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / ODBC / ACCESS.pm
index f2bbb64..69b3b9b 100644 (file)
@@ -26,7 +26,7 @@ It is a subclass of L<DBIx::Class::Storage::DBI::ODBC> and
 L<DBIx::Class::Storage::DBI::ACCESS>, see those classes for more
 information.
 
-It is loaded automatically by by L<DBIx::Class::Storage::DBI::ODBC> when it
+It is loaded automatically by L<DBIx::Class::Storage::DBI::ODBC> when it
 detects a MS Access back-end.
 
 This driver implements workarounds for C<IMAGE> and C<MEMO> columns, and
@@ -66,7 +66,7 @@ sub _run_connection_actions {
   }
 
   # batch operations do not work
-  $self->_get_dbh->{odbc_disable_array_operations} = 1;
+  $self->_disable_odbc_array_ops;
 
   return $self->next::method(@_);
 }
@@ -143,15 +143,19 @@ sub format_datetime {
   return $datetime_parser->format_datetime(shift);
 }
 
-1;
-
-=head1 AUTHOR
+=head1 FURTHER QUESTIONS?
 
-See L<DBIx::Class/AUTHOR> and L<DBIx::Class/CONTRIBUTORS>.
+Check the list of L<additional DBIC resources|DBIx::Class/GETTING HELP/SUPPORT>.
 
-=head1 LICENSE
+=head1 COPYRIGHT AND LICENSE
 
-You may distribute this code under the same terms as Perl itself.
+This module is free software L<copyright|DBIx::Class/COPYRIGHT AND LICENSE>
+by the L<DBIx::Class (DBIC) authors|DBIx::Class/AUTHORS>. You can
+redistribute it and/or modify it under the same terms as the
+L<DBIx::Class library|DBIx::Class/COPYRIGHT AND LICENSE>.
 
 =cut
+
+1;
+
 # vim:sts=2 sw=2: