in reply to Re: Re: newbie wants to install DBI for ActiveState
in thread newbie wants to install DBI for ActiveState
I added a couple lines to your code to skip trying to load module DBD::Proxy and ran the loops to completion:
The output (on my system) was:print "driver:\t$driver\n"; if( $driver eq 'Proxy' ) { print " skipping polling DSN's for Proxy driver.\n"; next; }
driver: CSV dsn: DBI:CSV:f_dir=test1 driver: Chart driver: ExampleP dsn: dbi:ExampleP:dir=. driver: File dsn: DBI:File:f_dir=test1 driver: ODBC dsn: DBI:ODBC:dBASE Files dsn: DBI:ODBC:Excel Files dsn: DBI:ODBC:MS Access Database driver: Proxy skipping polling DSN's for Proxy driver. driver: SQLite driver: mysql dsn: DBI:mysql:mysql dsn: DBI:mysql:mytest dsn: DBI:mysql:test
|
|---|