我在PHP中的以下SQL查询无法完全运行。结果只包含第一行。该查询在PHPMyadmin中完全正常,它返回所有结果。
$select = "SELECT a.setID, a.setName, a.setPrimaryLanguage, a.setSecondaryLanguage
FROM Person_Set ps, Album a
WHERE ps.Person_username = :username
AND ps.Set_setID = a.setID";
try {
$stmt = $dbh->prepare($select, array(PDO::ATTR_CURSOR => PDO::CURSOR_FWDONLY));
$stmt->bindValue(":username", $username, PDO::PARAM_STR);
$stmt->execute();
$result = $stmt->fetch();
echo json_encode($result);
unset($stmt);
} catch (Exception $e) {
echo 'Exception : ' . $e->getMessage() . "\n";
}
此外,如果我更改选择条件以搜索包含特定字符串的行,则结果为空(返回' false')。查询如下:
$select = "SELECT a.setID, a.setName, a.setPrimaryLanguage, a.setSecondaryLanguage
FROM Album a, Set_Card s
WHERE a.setName LIKE '%:searchText%'
AND a.setID = s.Set_setID
GROUP BY a.setID";
我一直在尝试不同的方式来连接到MySQL并获得结果,比如
$results = $mysqli->query($query);
而不是使用PDO。但是,结果仍然相同。任何人都可以帮助指出我的错误在哪里?非常感谢你!
答案 0 :(得分:3)
PDOStatement :: fetch - 从结果集中获取下一行
所以当你只进行一次获取时,它会获取第一行,除非你使用一个循环将光标更改为下一条记录。
您可以使用fetchAll
方法获取所有记录
答案 1 :(得分:1)
PDOStatement::fetch获取单行并将指针移动到下一行。您将使用$results = $stmt->fetchAll()
检索所有结果或这样的循环:
while ($result = $stmt->fetch()) {
echo json_encode($result);
}
答案 2 :(得分:1)
您好,您正在使用fetch()函数,该函数只获取一行而不是使用此代码
$select = "SELECT a.setID, a.setName, a.setPrimaryLanguage, a.setSecondaryLanguage
FROM Person_Set ps, Album a
WHERE ps.Person_username = :username
AND ps.Set_setID = a.setID";
try {
$stmt = $dbh->prepare($select, array(PDO::ATTR_CURSOR => PDO::CURSOR_FWDONLY));
$stmt->bindValue(":username", $username, PDO::PARAM_STR);
$stmt->execute();
$result = $stmt->fetchall();
echo json_encode($result);
unset($stmt);
} catch (Exception $e) {
echo 'Exception : ' . $e->getMessage() . "\n";
}