in reply to Re^2: DBI and using Oracle desc
in thread DBI and using Oracle desc
does not do what you might think it does.$sth = $dbh->table_info(",,USER\$")
Maybe you wanted to use the following?
$sth = $dbh->table_info('',undef,"USER")
Maybe, for a first try, leave all the restrictions out and see what ->table_info gives you.
|
|---|