File:view.html
Method:query.table(columns,*where,*order,*top)
对象名 'catalog' 无效。 select top 10 * FROM catalog WHERE AreaId=1 and Status=1 and ParentId=15 ORDER BY Grade asc,CatalogId asc
数据库执行错误
xmls/xz-news.xmls
$sub main(){
@method=$http.get(method,0);
$shell.call(@method);

}

$sub getCasenowscode(format){
@query=$query(catalog,content);
@
casetable=@query.table(*,['AreaId=1 and Status=1 and ParentId=15'],['Grade asc,CatalogId asc'],10);
@CaName=@casetable.format(@format);
$return(@CaName);
}

$sub getCasenowscode2(format){
@query=$query(catalog,goods);
@casetable=@query.table(*,['AreaId=1 and Status=1 and ParentId=367'],['Grade asc,CatalogId asc'],20);
@CaName=@casetable.format(@format);
$return(@CaName);
}

$sub getDisposal(format){
@query=$query(catalog,content);
@casetable=@query.table(*,['AreaId=1 and Status=1 a...