DBI is the "low level" interface between perl Perl and an DBMS, its . It's pretty much the only realistic choice for doing that. Comparable to JDBC in javaJava. You would be crazy (or have a very specific use case) to pick anything other than DBI for you low level interface between perl Perl and a database.
On top of DBI, there are various object/relational mappers which make working with a database much easier and cleaner.
Some of the common/more popular ones are
- DBIx::Class
- Class::DBI
- Rose::DB::Object ( Updated as per @John Siracusa )
