使用DBI有一种方法可以确定SELECT语句的执行语句句柄是否会返回任何行而不从中获取?
即就像是:
use DBI; ... my $sth = $dbh->prepare("SELECT ..."); $sth->execute; if (..$sth will return at least one row...) { ... } else { ... }
并且我想执行测试$sth将返回至少一行而不在$sth上执行任何获取方法.
注意 – 我不需要精确的行数(即$sth->行),我只需要知道$sth->行是否为> 0.