0

下面是使用 perl 连接 mysql 数据库并检索结果的代码。

在下面的示例中,示例表有 10 列。我只想将记录 99 的第二列和第三列转换为变量。

有人可以帮助我吗?

use strict;
 use warnings;
 use DBI;

my $dbh = DBI->connect('dbi:mysql:perltest','root','password') or die "Connection Error: $DBI::errstr\n";
my $sql = "select * from samples where record='99'";
my $sth = $dbh->prepare($sql);
$sth->execute or die "SQL Error: $DBI::errstr\n";
while (my @row = $sth->fetchrow_array) {
 print "@row\n";
 } 

提前致谢

4

1 回答 1

2

此代码将使您将行的第二列和第三列转换为变量:

while (my @row = $sth->fetchrow_array) {
     $var1 = @row[1];
     $var2 = @row[2];
} 
于 2012-11-06T23:10:21.963 回答