DBIx::Class::Storage::DBI::ADO::MS_Jet::Cursor - GUID Support for MS Access over


DBIx-Class documentation Contained in the DBIx-Class distribution.

Index


Code Index:

NAME

Top

DBIx::Class::Storage::DBI::ADO::MS_Jet::Cursor - GUID Support for MS Access over ADO

DESCRIPTION

Top

This class is for normalizing GUIDs retrieved from Microsoft Access over ADO.

You probably don't want to be here, see DBIx::Class::Storage::DBI::ACCESS for information on the Microsoft Access driver.

Unfortunately when using DBD::ADO, GUIDs come back wrapped in braces, the purpose of this class is to remove them. DBIx::Class::Storage::DBI::ADO::MS_Jet sets cursor_class to this class by default. It is overridable via your connect_info.

You can use DBIx::Class::Cursor::Cached safely with this class and not lose the GUID normalizing functionality, ::Cursor::Cached uses the underlying class data for the inner cursor class.

AUTHOR

Top

See AUTHOR in DBIx::Class and CONTRIBUTORS in DBIx::Class.

LICENSE

Top

You may distribute this code under the same terms as Perl itself.


DBIx-Class documentation Contained in the DBIx-Class distribution.
package DBIx::Class::Storage::DBI::ADO::MS_Jet::Cursor;

use strict;
use warnings;
use base 'DBIx::Class::Storage::DBI::Cursor';
use mro 'c3';

sub _dbh_next {
  my ($storage, $dbh, $self) = @_;

  my $next = $self->next::can;

  my @row = $next->(@_);

  my $col_info = $storage->_resolve_column_info($self->args->[0]);

  my $select = $self->args->[1];

  for my $select_idx (0..$#$select) {
    my $selected = $select->[$select_idx];

    next if ref $selected;

    my $data_type = $col_info->{$selected}{data_type};

    if ($storage->_is_guid_type($data_type)) {
      my $returned = $row[$select_idx];

      $row[$select_idx] = substr($returned, 1, 36)
        if substr($returned, 0, 1) eq '{';
    }
  }

  return @row;
}

sub _dbh_all {
  my ($storage, $dbh, $self) = @_;

  my $next = $self->next::can;

  my @rows = $next->(@_);

  my $col_info = $storage->_resolve_column_info($self->args->[0]);

  my $select = $self->args->[1];

  for my $row (@rows) {
    for my $select_idx (0..$#$select) {
      my $selected = $select->[$select_idx];

      next if ref $selected;

      my $data_type = $col_info->{$selected}{data_type};

      if ($storage->_is_guid_type($data_type)) {
        my $returned = $row->[$select_idx];

        $row->[$select_idx] = substr($returned, 1, 36)
          if substr($returned, 0, 1) eq '{';
      }
    }
  }

  return @rows;
}

1;

# vim:sts=2 sw=2: