当前位置: 代码迷 >> PB >> 这段代码如何不起作用?求教
  详细解决方案

这段代码如何不起作用?求教

热度:97   发布时间:2016-04-29 08:20:28.0
这段代码怎么不起作用?求教!
int ll_i,ll_id
ll_id=integer(sle_id.text)
......
//检查学号有无重号
  select student.stud_id
into :ll_i
from student
where student.stud_id=:ll_id;
if ll_i<>0 then
messagebox("错误信息","学号第"+string(ll_i)+"号重号!请改正")
sle_id.setfocus()
return
end if

------解决方案--------------------
不起作用是什么意思?你可以执行sql 语句时,查看sqlca.sqlcode返回值,看是不是sql 语句有问题。

select student.stud_id
into :ll_i
from student
where student.stud_id=:ll_id;
  相关解决方案