When Perl code needs access to a relational database, it usually accomplishes this by using the DBI CPAN module.
DBI's role is similar to that of JDBC for Java, or ODBC, in that it provides a set of common functions, classes and methods used to talk to databases, with a collection of specific backend implementations known as DBI drivers that implement this for particular types of database systems.
These drivers are modules with a name that starts with DBD::.
Many such modules are available on CPAN; popular ones include:
- DBD::Oracle
- DBD::MySQL
- DBD::Pg, for PostGreSQL
- DBD::ODBC
- DBD::SQLite
- DBD::CSV, which supports limited SQL access to collections of CSV files