C
cjfandhf
Unregistered / Unconfirmed
GUEST, unregistred user!
1.用tquery调用存储过程,咋办???
sql.add('过程名‘)不行!
tstoreproc有参数时不好使!
2。在服务器端执行:
with querydo
begin
close;
sql.clear;
sql.add('select top 10 * from xxx');
prepare;
open;
end;
产出错,好像top的问题,在 c/s结构中就没问题!是不是三层后,sql的一些函数命令(charindex,convert 等)不支持了????
sql.add('过程名‘)不行!
tstoreproc有参数时不好使!
2。在服务器端执行:
with querydo
begin
close;
sql.clear;
sql.add('select top 10 * from xxx');
prepare;
open;
end;
产出错,好像top的问题,在 c/s结构中就没问题!是不是三层后,sql的一些函数命令(charindex,convert 等)不支持了????