Home  >  Article  >  Backend Development  >  通过dbi使用perl连接mysql数据库的方法_PHP

通过dbi使用perl连接mysql数据库的方法_PHP

WBOY
WBOYOriginal
2016-06-01 11:54:491193browse

通过使用DBI,用Perl可以很容易的连接到mysql数据库:

代码如下:
复制代码 代码如下:
#!/bin/perl

use DBI;

# Connect to target DB
my $dbh = DBI->connect("DBI:mysql:database=eygle;host=localhost","username","password", {'RaiseError' => 1});

# Insert one row
my $rows = $dbh->do("INSERT INTO test (id, name) VALUES (1, 'eygle')");

# query
my $sqr = $dbh->prepare("SELECT name FROM test");
$sqr->execute();

while(my $ref = $sqr->fetchrow_hashref()) {
print "$ref->{'name'}n";
}

$dbh->disconnect();

执行结果:

复制代码 代码如下:
[root@eygle ~]# perl test.cgi
eygle

以后很多统计数据可以直接通过Perl写入Mysql数据库,操作起来方便多了。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn