私はちょうどselectステートメントのために2時間を費やしました。文字列を含むzend selectステートメント
私は間違っていますか?
public function fetchSpecific($moderatorid = 1)
{
$resultSet = $this->getDbTable()->fetchAll("moderatorid = ".$moderatorid);
$entries = array();
foreach ($resultSet as $row) {
$entry = new Application_Model_Network();
$entry->setId($row->id)
->setName($row->name)
->setModeratorId($row->moderatorid);
$entries[] = $entry;
}
return $entries;
}
これは、すべての行についてです:
$resultSet = $this->getDbTable()->fetchAll("moderatorid = ".$moderatorid);
それは私にエラーを与えるが、これを好き:
Message: SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1
ニース説明。 +1 – RockyFord
これは私の人生を保存しました.. – Proto
優秀、喜んで助けて! – drew010