select count(0) into ll_Rowcount from tab;
能利用messagebox函数将ll_Rowcount这个数字打印出来吗?
或者用其他什么函数。
------解决方案--------------------
可以的,转成STRING的
------解决方案--------------------
首先是select count(0) into :ll_Rowcount from tab;
你上面少个冒号。
messagebox("提示",string(ll_Rowcount))