pb中的elseif要连起来写

 

select username into:l_s_username from U_YHCS WHERE  username=:g_s_username AND  password=:g_s_password;
if SQLCA.sqlcode = 100 then
 messagebox("提示信息","用户名或密码错误!")
 return
elseif SQLCA.sqlcode < 0 then
 MessageBox("提示信息",SQLCA.SQLerrText,Exclamation!)
 return
end if

相关文章:

  • 2021-09-07
  • 2022-01-05
  • 2022-12-23
  • 2021-09-03
  • 2021-08-26
  • 2022-12-23
  • 2022-12-23
  • 2021-12-19
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-06-28
  • 2022-12-23
  • 2021-06-29
  • 2021-09-11
  • 2021-12-02
相关资源
相似解决方案