Registriert seit: 13. Aug 2002
17.195 Beiträge
Delphi 10.4 Sydney
|
Re: Ergebnis von SQl-Abfrage in StringList
27. Jul 2005, 14:16
Delphi-Quellcode:
with qry_DatenHolen do
begin
open;
while not eof do
begin
str := '';
for j := 0 to Fields.Count
begin
str := str + ' ' + Fields[j].AsString;
end;
sDaten.add(str);
next;
end;
end;
Windows Vista - Eine neue Erfahrung in Fehlern.
|