Re: table_info not working, am I doing something wrong?



Another little tidbit: The function is silently failing. If I use
the following code, for example, the die clause isn't executed, but
the Debug 2 line is never executed:

print "<p>Debug 1</p>\n";
my $sth = $dbh->table_info('%', '%', '%', 'TABLE') or
die "Could not fetch tables: " . DBI->errstr;
print "<p>Debug 2</p>\n";

.