Re: PERL - DBI MODULE

2020-06-04 Thread Darren Duncan
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

RE: [EXTERNAL] PERL - DBI MODULE

2020-06-04 Thread Fennell, Brian
DBI is an interface. It isn’t really meant to be used without some kind of a database / DBD driver behind the interface. The following are simple and do not require a lot of other things to be installed: https://metacpan.org/pod/DBD::Mock https://metacpan.org/pod/DBD::Mem

RE: [EXTERNAL] PERL - DBI MODULE

2020-06-04 Thread Fennell, Brian
For further reading: https://metacpan.org/pod/DBI::DBD These links may help as well: (You can compare perl to other programing languages you may already know) https://rosettacode.org/wiki/Table_creation https://rosettacode.org/wiki/Table_creation/Postal_addresses

Re: PERL - DBI MODULE

2020-06-04 Thread Jonathan Leffler
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

PERL - DBI MODULE

2020-06-04 Thread Pramod Mv
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