C
ciscopower
Unregistered / Unconfirmed
GUEST, unregistred user!
遍了一个测试存储过程
...
select @cc=中心名 from 测试 where 编号=@number
GO
其中@cc 为output类型。
可是从DELPHI中一调用,
storpc1.Parameters.Parambyname('@number').Value:='ppp';
storpc1.Parameters.Parambyname('@cc').Value:='ppp';
storpc1.Open;
while not storpc1.eof do
begin
Memo1.Lines.Add(VarToStr(storpc1.Parameters.parambyname('@cc').Value));
storpc1.next;
end;
结果一运行,报:storpc1 commandtext does noet return a result rest.
郁闷ing......
...
select @cc=中心名 from 测试 where 编号=@number
GO
其中@cc 为output类型。
可是从DELPHI中一调用,
storpc1.Parameters.Parambyname('@number').Value:='ppp';
storpc1.Parameters.Parambyname('@cc').Value:='ppp';
storpc1.Open;
while not storpc1.eof do
begin
Memo1.Lines.Add(VarToStr(storpc1.Parameters.parambyname('@cc').Value));
storpc1.next;
end;
结果一运行,报:storpc1 commandtext does noet return a result rest.
郁闷ing......