我有以下函數,它使查詢能夠以where條件運行。但似乎沒有產生任何結果。PDO查詢不打印任何東西
我可以連接到數據庫,所以不是問題。
任何幫助,將不勝感激。
public function executewhereQuery(Array $tableData, $fieldType, $table, $tableField){
$dbh = $this->connect();
try{
$dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
/*** fetch into an PDOStatement object ***/
$stmt = $dbh->prepare("SELECT * FROM ".$table."
WHERE ".$tableField." = :fieldValue");
if($fieldType=='int'){
$stmt->bindParam(':fieldValue', $fieldValue, PDO::PARAM_INT);
}
else{
$stmt->bindParam(':fieldValue', $fieldValue, PDO::PARAM_STR);
}
$stmt->execute($tableData);
/*** fetch the results ***/
$results = $stmt->fetchAll(PDO::FETCH_ASSOC);
return $results;
/*** close the database connection ***/
$dbh = null;
}
catch(PDOException $e){
echo $e->getMessage();
}
}
我使用下面的調用該函數:
$mydb = new Dbpdo_Database();
$tableData = Array('fieldValue' => 1);
$table = 'news';
$tableField = 'newsID';
$fieldType = 'int';
$results = $mydb->executewhereQuery($tableData, $fieldType, $table, $tableField);
foreach ($results as $row){
echo $row['newsTitle'].'-'.$row['newsText1'].'<br />';
}