本文介绍了IF声明的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何执行以下操作:
如果记录集为空,则重定向到page1,但如果记录集中有内容,则
重定向到第2页。
谢谢
解决方案
除了,RecordCount不可用默认光标(-1是
默认),所以你的Else可能总是会开火。
EOF属性会告诉你结果集是否为空而无需
依赖于计数。
A
How can I do the following:
If recordset is empty, redirect to page1 but if recordset has something in,
redirect to page 2.
Thanks
解决方案
Except, RecordCount isn''t available with the default cursor (-1 is the
default), so your Else will probably always fire.
The EOF property will tell you if the resultset is empty without having to
rely on a count.
A
这篇关于IF声明的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!