Re: PERL - DBI MODULE
The closest thing to what you ask that is actually useful is to install DBD::SQLite. While this is a DBD, it includes the database engine so you have full DBI functionality without needing to have a separate database server. -- Darren Duncan On 2020-06-02 9:35 p.m., Pramod Mv wrote: Hello team Could you please let me know how to use the DBI module without a DBD module installed ? . can you suggest any alternative. -- Regards, Pramod M V
Re: PERL - DBI MODULE
On Thu, Jun 4, 2020 at 13:32 Pramod Mv wrote: > Could you please let me know how to use the DBI module without a DBD > module installed ? . can you suggest any alternative. > For most practical purposes, you can't use the DBI without a DBD module — it's reason for existing is to provide a uniform interface to different databases. There are some drivers available with just DBI installed. But they are rather specialized and usually not what you need. -- Jonathan Leffler #include Guardian of DBD::Informix - v2018.1031 - http://dbi.perl.org "Blessed are we who can laugh at ourselves, for we shall never cease to be amused."
RE: PERL DBI Module
> -Original Message- > From: Brent Eichenberger [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, August 08, 2001 9:52 PM > To: '[EMAIL PROTECTED]' > Subject: PERL DBI Module > > > Hello, > > I downloaded the DNI module, and follow the instructions but it I hope you downloaded the DBI module:) > kept saying > that Can't locate lib/DBI/DBD.pm in @INC. You are not being specific. You also need a DBD::* to use that is specific to the database you are using. DBD::Oracle, DBD::Pg, etc... You also might not of installed DBI correctly. > > Do you know how to solev the problem? > > Muchly appreciated. > Brent > > > > Brent Eichenberger > Information Systems Engineer > Coles Myer Limited > > * (03) 9483 7588 > * [EMAIL PROTECTED] > > Check out Information Systems Security homepage at > http://iss.cmlnet.colesmyer.com.au > > > > > > > >
