in reply to Getting database type from db handle
Looking at the docs, database handles have a three attributes that sound useful. It turns out that all three are useful. I don't know how you could have missed them all.
$dbh->{Name}
$dbh->get_info( $GetInfoType{SQL_DBMS_NAME} );
$dbh->{Driver}->{Name}
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Getting database type from db handle
by leocharre (Priest) on Sep 22, 2009 at 15:37 UTC | |
by ikegami (Patriarch) on Sep 22, 2009 at 16:09 UTC | |
by leocharre (Priest) on Sep 22, 2009 at 19:35 UTC | |
|
Re^2: Getting database type from db handle
by songahji (Friar) on Sep 23, 2009 at 13:43 UTC |