Q. How do I access my MySQL database server using Perl programming language?
A. DBI is a generic interface for many databases. That means that you can write a script that 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.
So you can connect Perl to your MySQL database server using the DBI Perl module. Here is small program.
Sample Perl code
Make sure you replace database name, MySQL server hostname, username and password according to your setup.
#!/usr/bin/perl -w use DBI; print "Content-type: text/html\n\n"; ## mysql user database name $db ="mysql"; ## mysql database user name $user = "vivek"; ## mysql database password $pass = "myPassword"; ## user hostname : This should be "localhost" but it can be diffrent too $host="localhost"; ## SQL query $query = "show tables"; $dbh = DBI->connect("DBI:mysql:$db:$host", $user, $pass); $sqlQuery = $dbh->prepare($query) or die "Can't prepare $query: $dbh->errstr\n"; $rv = $sqlQuery->execute or die "can't execute the query: $sqlQuery->errstr"; print "<h3>********** My Perl DBI Test ***************</h3>"; print "<p>Here is a list of tables in the MySQL database $db.</p>"; while (@row= $sqlQuery->fetchrow_array()) { my $tables = $row[0]; print "$tables\n<br>"; } $rc = $sqlQuery->finish; exit(0);
Save and upload above program.
🐧 Get the latest tutorials on Linux, Open Source & DevOps via:
- RSS feed or Weekly email newsletter
- Share on Twitter • Facebook • 14 comments... add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |
I’ve looked at a lot of sample code trying to learn how to successfully get extract any information from a database and this has been the first that actually worked! Kudos. Very helpful.
Hi Nixcraft,
Thanks for this code but i got the following:
– I copy the code and paste it in this file checkdb.sh.
– And run chmod +x checkdb.sh
– Then run ./checkdb.sh
Then the following occured:
Name “main::rv” used only once: possible typo at /usr/bin/check.db line 25.
Name “main::rc” used only once: possible typo at /usr/bin/check.db line 42.
Content-type: text/html
********** My Perl DBI Test ***************
Here is a list of tables in the MySQL database mysql.
columns_priv
db
event
func
general_log
help_category
help_keyword
help_relation
help_topic
host
ndb_binlog_index
plugin
proc
procs_priv
servers
slow_log
tables_priv
time_zone
time_zone_leap_second
time_zone_name
time_zone_transition
time_zone_transition_type
user
[root@drbl-01 ~]#
Currently installed Perl Modules:
[root@drbl-01 DBD-mysql-4.010]# instmodsh
Available commands are:
l – List all installed modules
m – Select a module
q – Quit the program
cmd? l
Installed modules are:
DBD::mysql
DBI
Perl
cmd? q
ANy suggestion on how to fix this?
Thanks again!
Stone
Stone
remove $rv = and $rc = they are not needed on those lines.
I have to synchronize bugzilla which uses mysql and HP quality centre which uses mssql .. i’m tryin to do this in perl.. As a fresher i’m not sure wat perl can do .. can anyone suggest me
This really does work. After 3 days of searching this is the first script that works.
THANK YOU!!!!!!!
Works beautifully! Thank you :)
It’s working very well
thank you.
Works like a champ!
My only significant modifications were “use strict” which means adding “my” to declare all the variables.
It would be nice if it also had an example of adding parameters to the prepared statement. I happened to look that up separately, which I’m adding to this comment in case someone else finds it useful.
Example: list every row where the user_id starts with “a”.
Results (from my table):
User ID’s that start with ‘a’
Thank you!
What extention should I use while saving the program? An does it need any compiler or IDM ? Thanks
Thanks a lot,
I have been searching for this, past 4 days.
Can you please share script to connect excel file into perl.
Please…..
Thanks in Advance.
I’ve got an error when I installed the DBI::mysql via cpan.I am using ec2(ubuntu 14) and rds(mysql). In my ec2 I’ve already DBI via cpan. When I install DBI::mysql, I’ve got an error.
cpan[1]> install DBI::mysql
Here I am able to create a datbase after running the script .(connection.pl)
like ./connection.pl
Please correct below script if its incorrect .But its not working .
I want to write script which will ask to user to create database name ,user name and passowrd after running the script..(User can give the input from keyborad)
like Please enter the Databse Name if not exists .
This worked well for me. Very easy to follow. I too use ‘strict’ and had to add my to the various variables but other than that it was a great find.
Thanks
Doug Marker