DBIx-SQLEngine
view release on metacpan or search on metacpan
SQLEngine/Driver.pm view on Meta::CPAN
=back
To Do: this should probably be using DBI's type_info methods.
=cut
# %@$columns = $self->retrieve_columns($sth)
#!# 'pri_key' => $sth->is_pri_key->[$i],
# is_pri_key causes the driver to fail with the following fatal error:
# relocation error: symbol not found: mysql_columnSeek
# or at least that happens in the version we last tested it with. -S.
sub retrieve_columns {
my ($self, $sth) = @_;
my $type_defs = $self->column_type_codes();
my $names = $sth->{'NAME_lc'};
my $types = eval { $sth->{'TYPE'} || [] };
# warn "Types: " . join(', ', map "'$_'", @$types);
( run in 0.765 second using v1.01-cache-2.11-cpan-71847e10f99 )