下面是使用 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";
}
提前致谢