1 package DBIx::Class::Storage::DBI::ACCESS;
5 use base 'DBIx::Class::Storage::DBI::UniqueIdentifier';
9 use List::Util 'first';
12 __PACKAGE__->sql_limit_dialect ('Top');
13 __PACKAGE__->sql_maker_class('DBIx::Class::SQLMaker::ACCESS');
14 __PACKAGE__->sql_quote_char ([qw/[ ]/]);
16 sub sqlt_type { 'ACCESS' }
18 __PACKAGE__->new_guid(undef);
22 DBIx::Class::Storage::DBI::ACCESS - Support specific to MS Access
26 This is the base class for Microsoft Access support.
28 This driver supports L<last_insert_id|DBIx::Class::Storage::DBI/last_insert_id>,
29 empty inserts for tables with C<AUTOINCREMENT> columns, nested transactions via
30 L<auto_savepoint|DBIx::Class::Storage::DBI/auto_savepoint>, C<GUID> columns via
31 L<DBIx::Class::Storage::DBI::UniqueIdentifier>.
33 =head1 SUPPORTED VERSIONS
35 This module has currently only been tested on MS Access 2010.
37 Information about how well it works on different version of MS Access is welcome
38 (write the mailing list, or submit a ticket to RT if you find bugs.)
40 =head1 USING GUID COLUMNS
42 If you have C<GUID> PKs or other C<GUID> columns with
43 L<auto_nextval|DBIx::Class::ResultSource/auto_nextval> you will need to set a
44 L<new_guid|DBIx::Class::Storage::DBI::UniqueIdentifier/new_guid> callback, like
47 $schema->storage->new_guid(sub { Data::GUID->new->as_string });
49 Under L<Catalyst> you can use code similar to this in your
50 L<Catalyst::Model::DBIC::Schema> C<Model.pm>:
54 $self->storage->new_guid(sub { Data::GUID->new->as_string });
59 sub _dbh_last_insert_id { $_[1]->selectrow_array('select @@identity') }
61 # support empty insert
64 my ($source, $to_insert) = @_;
66 my $columns_info = $source->columns_info;
68 if (keys %$to_insert == 0) {
69 my $autoinc_col = first {
70 $columns_info->{$_}{is_auto_increment}
71 } keys %$columns_info;
73 if (not $autoinc_col) {
74 $self->throw_exception(
75 'empty insert only supported for tables with an autoincrement column'
79 my $table = $source->from;
80 $table = $$table if ref $table;
82 $to_insert->{$autoinc_col} = \"dmax('${autoinc_col}', '${table}')+1";
85 return $self->next::method(@_);
88 sub bind_attribute_by_data_type {
92 my $attributes = $self->next::method(@_) || {};
94 if ($self->_is_text_lob_type($data_type)) {
95 $attributes->{TYPE} = DBI::SQL_LONGVARCHAR;
97 elsif ($self->_is_binary_lob_type($data_type)) {
98 $attributes->{TYPE} = DBI::SQL_LONGVARBINARY;
104 # savepoints are not supported, but nested transactions are.
105 # Unfortunately DBI does not support nested transactions.
106 # WARNING: this code uses the undocumented 'BegunWork' DBI attribute.
108 sub _exec_svp_begin {
109 my ($self, $name) = @_;
111 local $self->_dbh->{AutoCommit} = 1;
112 local $self->_dbh->{BegunWork} = 0;
113 $self->_exec_txn_begin;
116 # A new nested transaction on the same level releases the previous one.
117 sub _exec_svp_release { 1 }
119 sub _exec_svp_rollback {
120 my ($self, $name) = @_;
122 local $self->_dbh->{AutoCommit} = 0;
123 local $self->_dbh->{BegunWork} = 1;
124 $self->_exec_txn_rollback;
131 See L<DBIx::Class/AUTHOR> and L<DBIx::Class/CONTRIBUTORS>.
135 You may distribute this code under the same terms as Perl itself.