Go to the first, previous, next, last section, table of contents.


MySQL Perl API's

Since DBI/DBD now is the recommended perl interface mysqlperl is not documented here.

DBI with DBD::mysql

DBI is a generic interface for many databases. That means that you can write a script what works with many different database engines without change. You need a DataBase Driver (DBD) defined for each database type. For MySQL, this driver is called DBD::mysql.

For more information on the Perl5 DBI, please visit DBIs web page and read the documentation. For more information on Object Oriented Programming (OOP) as defined in Perl5, see the perl OOP page.


Go to the first, previous, next, last section, table of contents.