Is it possible to get the driver specific prefix programmatically with a database handle (or statement handle)? For example if I do:
$dbh = DBI->connect('dbi:Sybase:...');
$sth = $dbh->execute('select 1');
Is there any way to get 'syb' or 'syb_' from the $dbh or $sth (since that
is the driver prefix for Sybase)?
