L
lanchong
Unregistered / Unconfirmed
GUEST, unregistred user!
Delphi5+MS SQL Server2000中如下一段代码:
procedure TForm1.ComboBox1DropDown(Sender: TObject);
begin
combobox1.clear;
with adotable1 do
begin
open;
while not eof do
begin
combobox1.Items.Add(adotable1.fieldbyname('name').asstring);
next;
end;
close;
end;
end;
运行后,总是提示错误:BOF或EOF有一个是真,或者当前的记录已被删除,所需的操作
要求一个当前的记录。
但是,在SQL查询器中,表里确实有数据啊。各位大侠救救我。
procedure TForm1.ComboBox1DropDown(Sender: TObject);
begin
combobox1.clear;
with adotable1 do
begin
open;
while not eof do
begin
combobox1.Items.Add(adotable1.fieldbyname('name').asstring);
next;
end;
close;
end;
end;
运行后,总是提示错误:BOF或EOF有一个是真,或者当前的记录已被删除,所需的操作
要求一个当前的记录。
但是,在SQL查询器中,表里确实有数据啊。各位大侠救救我。