- 浏览: 3169 次
- 性别:
- 来自: 深圳
最新评论
文章列表
DECLARE cursor_a CURSOR --声明游标
FOR
SELECT name
FROM cc_tb_cfg_operator
WHERE oper_id > 0
--order by sDomainCode
go--缺少go将报错:DECLARE CURSOR must be the only statement in a query batch
OPEN cursor_a --打开游标
DECLARE @domainCode VARCHAR(11), @message VARCHAR(80)
FETCH cursor_a
...
在action的配置文件(xml文件)的相应action中加上<param name=” contentType”>text/html</param>
<action name="ImportBTSAction" class="cn.mastercom.bis.bts.BtsMngAction" method="importBTS">
<result type="json">
<param name="includePrope ...