On Wed, Mar 20, 2002 at 02:19:33PM -0500, Ed Sickafus wrote:
>
> Can't locate auto/DBI/dat_sources.al in @INC ## <-- who loads
> dat_sources.al?
> I notice the double // in the first path in @INC ("
> ..../perllib//i386-linux"), and am suspect.
The double slash shouldn't matter, but you can fix it by removing the
trailing slash from the path in use lib:
> use lib ('/home/sites/site10/users/esickafus/perllib/');
> my @dataSources = DBI->dat_sources ($driver);
You're getting the error because you have mispelled data_sources(). DBI is
trying to autoload a method named dat_sources and can't find it.
Ronald