Programming Languages
C#
Subjective
Mar 14, 2013
What interface used in PERL to connect to database? How do you connect to database in Perl?
Detailed Explanation
We can connect to database using DBI module in Perl.
use DBI;
my $dbh = DBI->connect(’dbi:Oracle:orcl’, ‘username’, ‘password’,)
Discussion (0)
No comments yet. Be the first to share your thoughts!
Share Your Thoughts