SELECT product_id FROM gsp_product WHERE category_id= and product_id<169 ORDER BY product_id desc LIMIT 1
執行錯誤: 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 'and product_id<169 ORDER BY product_id desc LIMIT 1' at line 1
- /data/wwwroot/default/SpeedPHP/Drivers/mysql.php on line 62
57.
{
58.
$this->arrSql[] = $sql;
59.
if( $result = mysql_query($sql, $this->conn) ){
60.
return $result;
61.
}else{
62.
63.
spError("{$sql}<br />執行錯誤: " . mysql_error());
}
64.
}
65.
66.
/**
67.
* 返回影響行數
- /data/wwwroot/default/SpeedPHP/Drivers/mysql.php on line 26
21.
*
22.
* @param sql 執行的SQL語句
23.
*/
24.
public function getArray($sql)
25.
{
26.
27.
if( ! $result = $this->exec($sql) )return array();
if( ! mysql_num_rows($result) )return array();
28.
$rows = array();
29.
while($rows[] = mysql_fetch_array($result,MYSQL_ASSOC)){}
30.
mysql_free_result($result);
31.
array_pop($rows);
- /data/wwwroot/default/SpeedPHP/Core/spModel.php on line 107
102.
103.
//echo $sql;
104.
105.
if(null != $limit)$sql = $this->_db->setlimit($sql, $limit);
106.
107.
108.
return $this->_db->getArray($sql);
}
109.
/**
110.
* 過濾轉義字符
111.
*
112.
* @param value 需要進行過濾的值
- /data/wwwroot/default/SpeedPHP/Core/spModel.php on line 65
60.
* @param sort 排序,等同于“ORDER BY ”
61.
* @param fields 返回的字段范圍,默認為返回全部字段的值
62.
*/
63.
public function find($conditions = null, $sort = null, $fields = null)
64.
{
65.
66.
if( $record = $this->findAll($conditions, $sort, $fields, 1) ){
return array_pop($record);
67.
}else{
68.
return FALSE;
69.
}
70.
}
- /data/wwwroot/default/model/db_product.php on line 60
55.
//獲得上一篇下一篇
56.
function getNext($product_id)
57.
{
58.
$category_id=$this->getField(array("product_id"=>$product_id),"category_id");
59.
60.
61.
$nextresult=$this->find("category_id={$category_id} and product_id<{$product_id}","product_id desc","product_id","0,1");
62.
if($nextresult)
63.
{
64.
$nextinfo=$this->find(array("product_id"=>$nextresult["product_id"]),"","product_id,product_title");
65.
$nextstr='<a href="/index.php?c=product&a=view&id='.$nextinfo["product_id"].'">'.$nextinfo["product_title"].'</a>';
- /data/wwwroot/default/controller/product.php on line 94
89.
$product_id=$this->cytrim("id");
90.
$cid=$product->getField(array("product_id"=>$product_id),"category_id");
91.
$parent_id=$product->getField(array("product_id"=>$product_id),"parent_id");
92.
$viewtpl=$category->getField(array("category_id"=>$cid),"view_tpl");
93.
$this->productvalue=$product->spLinker()->find(array("product_id"=>$product_id));
94.
95.
$this->productnext=$product->getNext($product_id);
$this->productprev=$product->getPrev($product_id);
96.
$tplname="web/".$viewtpl;
97.
98.
if($category->findCount(array("parent_id"=>$cid)))
99.
{
- /data/wwwroot/default/SpeedPHP/spFunctions.php on line 21
16.
if(!is_object($handle_controller) || !method_exists($handle_controller, $__action)){
17.
eval($GLOBALS['G_SP']["dispatcher_error"]);
18.
exit;
19.
}
20.
// 路由并執行用戶代碼
21.
22.
$handle_controller->$__action();
// 控制器程序運行完畢,進行模板的自動輸出
23.
if(FALSE != $GLOBALS['G_SP']['view']['auto_display']){
24.
$__tplname = $__controller.$GLOBALS['G_SP']['view']['auto_display_sep'].
25.
$__action.$GLOBALS['G_SP']['view']['auto_display_suffix']; // 拼裝模板路徑
26.
$handle_controller->auto_display($__tplname);
- /data/wwwroot/default/index.php on line 29
24.
),
25.
);
26.
27.
require(SP_PATH."/SpeedPHP.php");
28.
require(SP_PATH."/Extensions/cyFunctions.php");
29.
30.
spRun();