show/hide this revision's text 3 added 1 characters in body

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

show/hide this revision's text 2 Corrected Information

DBI is the "low level" interface between perl and an DBMS, its pretty much the only realistic choice for doing that. Comparable to JDBC in java. You would be crazy (or have a very specific use case) to pick anything other than DBI for you low level interface between 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

show/hide this revision's text 1

DBI is the "low level" interface between perl and an DBMS, its pretty much the only realistic choice for doing that. Comparable to JDBC in java. You would be crazy (or have a very specific use case) to pick anything other than DBI for you low level interface between 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