On Wed, Jul 16, 2003 at 01:35:23AM -0500, Christopher L. Everett wrote:
> I've been using an alpha version of column_info that Tim Bunce
> sent the Class::DBI list ages ago in connection with some code
> to extend Class::DBI.  AFAICS, it's precisely what's in the
> latest version of DBD::mysql.  I got it to work without any
> finding bugs except it couldn't handle tablenames that included
> the database name, like 'foo.bar', which I naturally fixed.

I don't think there's a bug. Looks like you were calling it the wrong way:

> my $sth = $dbh->column_info(undef, undef, 'physemp.account', '%');

Should be

  my $sth = $dbh->column_info(undef, 'physemp', 'account', '%');

Tim.

Reply via email to