php sqlite数据库查询这样写的:$db = new SQLite3('my.db');
$update="select * from good";
$result = $db->query($update);有什么函数能够得到这个结果集中的行数?