以下select
返回一個空的結果集,儘管它shoudn't:TYPO3:exec_SELECTquery與where子句
$res = $GLOBALS['TYPO3_DB']->exec_SELECTquery('*', 'tx_xmluploader_xml_import_tree', 'xml_import_id='.$xml_import_id);
$xml_import_id
被設置。和它的作品,如果我刪除where
條款..
感謝
我還是不明白爲什麼它不工作..由coleague提出了一個簡單的解決方法:
// select all from the db
$res = $GLOBALS['TYPO3_DB']->exec_SELECTquery('*', 'tx_xmluploader_xml_import_tree');
while($entry = $GLOBALS['TYPO3_DB']->sql_fetch_assoc())
{
if($entry['xml_import_id'] == $xml_import_id) {
....
}
}
究竟你「是不是爲我工作」是什麼意思?空結果集?錯誤信息? –
它返回一個空的結果集。 – Astrip
只是爲了得到更新:是否有任何這些答案適合你? – Mateng