Home » Tutorials » Web Development » Databases » MySql » Accessing MySQL using PERL..

Accessing MySQL using PERL

Added March 16, 2008, read 55 times

Starting from Perl 5 it has become very easy to write database applications using DBI. DBI stands for Database independent interface for Perl which means DBI provides an abstraction layer between the Perl code and the underlying database, allowing you to switch database implementations really easily.

View tutorial