S
sun_hong_jun
Unregistered / Unconfirmed
GUEST, unregistred user!
创建的存储过程代码为:
create proc sfj @name varchar(10) as
select * from authors where au_fname=@name
执行代码如下:
procedure TForm1.Button1Click(Sender: TObject);
begin
with proc do
begin
StoredProcName :='sfj';
parambyname('name').Value :=''''+edit1.text+'''';注:这样会出现第二个错误
或 params[0].value:=''''+edit1.text+'''';注:这样会出现第一个错误
prepare;
open;
end;
end;
第一个错误提示为:
list index out of bounds(0)
第二个错误提示为:
parameter 'name' not find
create proc sfj @name varchar(10) as
select * from authors where au_fname=@name
执行代码如下:
procedure TForm1.Button1Click(Sender: TObject);
begin
with proc do
begin
StoredProcName :='sfj';
parambyname('name').Value :=''''+edit1.text+'''';注:这样会出现第二个错误
或 params[0].value:=''''+edit1.text+'''';注:这样会出现第一个错误
prepare;
open;
end;
end;
第一个错误提示为:
list index out of bounds(0)
第二个错误提示为:
parameter 'name' not find