pb中怎样判断数据窗口retrieve()后的成功与失败
举个例子:dw_1.settransobject(sqlca);dw_1.retrieve(a);数据窗口dw_1的数据源来自sqlserver执行的一个存储过程,在re...
举个例子:dw_1.settransobject(sqlca);
dw_1.retrieve(a);
数据窗口dw_1的数据源来自sql server执行的一个存储过程,在retrieve的时候参数赋值进去都是正确的,但是我要是把那个存储过程中的所执行的sql语句故意改错,现在想在retrieve后也能知道,该怎么判断呢?用sqlca.sqlcode好像不行,不管所执行的sql语句的正确与否,该值始终为0(正确),给我的感觉sqlca.sqlcode好像只能判断本地的(写在pb里的sql语句),不能判断服务器的(sql server里语句的执行情况),请问各位大虾,有别的好办法判断吗?小弟谢过了!! 展开
dw_1.retrieve(a);
数据窗口dw_1的数据源来自sql server执行的一个存储过程,在retrieve的时候参数赋值进去都是正确的,但是我要是把那个存储过程中的所执行的sql语句故意改错,现在想在retrieve后也能知道,该怎么判断呢?用sqlca.sqlcode好像不行,不管所执行的sql语句的正确与否,该值始终为0(正确),给我的感觉sqlca.sqlcode好像只能判断本地的(写在pb里的sql语句),不能判断服务器的(sql server里语句的执行情况),请问各位大虾,有别的好办法判断吗?小弟谢过了!! 展开
3个回答
展开全部
Return value
Returns the number of rows displayed (that is, rows in the primary buffer) if it succeeds and -1 if it fails. If there is no DataWindow object assigned to the DataWindow control or DataStore, this method returns -1.
retrieve本身有返回值的,成功是0,-1失败,你试一下
PS:sqlcode一般是判断sql语句的执行状态,和数据窗口检索数据无关
Returns the number of rows displayed (that is, rows in the primary buffer) if it succeeds and -1 if it fails. If there is no DataWindow object assigned to the DataWindow control or DataStore, this method returns -1.
retrieve本身有返回值的,成功是0,-1失败,你试一下
PS:sqlcode一般是判断sql语句的执行状态,和数据窗口检索数据无关
展开全部
检索成功,则返回检索的总行数,检索失败,返回-1
long ll_ret
ll_ret = dw_1.retrieve(a)
if ll_ret >0 then
//retrieve succeed
else
//retrieve failed
end if
long ll_ret
ll_ret = dw_1.retrieve(a)
if ll_ret >0 then
//retrieve succeed
else
//retrieve failed
end if
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不知道你说的是什么,这样做的目的是什么
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询