Delphi中数据封装在TDataSet中,也就是双向的游标。
你要添加到ListBox中,只需如此这般,这般如此,这么这么这么办
with Querydo
begin
SQL.Clear ;
SQL.Add('select * from ...') ;
Open ;
end ;
listbox.item.clear;
While not Query.eofdo
begin
a:=Query.FieldByName('xx').AsString;
listbox.item.add(a);
Query.next;
end;