typo fixes
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / ODBC / ACCESS.pm
index 2a0624f..e8cca9a 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
@@ -65,6 +65,9 @@ sub _run_connection_actions {
     $self->_dbh->{LongReadLen} = $long_read_len * 2 + 1;
   }
 
+  # batch operations do not work
+  $self->_disable_odbc_array_ops;
+
   return $self->next::method(@_);
 }