Authored by qinchao

sql通用查询 ,以-- 开头的才认为是注释,其余的情况不是

... ... @@ -250,7 +250,8 @@
if(rowContent){
var annoteTypeNum=rowContent.indexOf("--");
if(annoteTypeNum>0){
newArry.push(rowContent.substr(0,annoteTypeNum));
// newArry.push(rowContent.substr(0,annoteTypeNum));
newArry.push(rowContent);
}else if(annoteTypeNum==0){
//去掉
}else{
... ...