Bill Moseley wrote: > $DBI::neat_maxlen = 10000; > DBI->trace(1); > > <- connect('dbname=test_dev', 'moseley', ...)= DBI::db=HASH(0xb2f6a90) > at DBI.pm line 653 > > Anyway to show the full connect details? > > $DBI::VERSION = "1.609"; >
I'm not exactly sure what you want given your explanation but as far as I know this is all you can get from DBI tracing for a connect at trace level 1 although there may be further details from the driver at higher (15) trace levels. The latest version of DBIx::Log4perl displays full connect method arguments (with the password disguised) including attributes. Perhaps you might find this useful - look for it on CPAN. Martin