guten morgen,
habe eine
query(count), wie frage ich jetzt die Anzahl der Datensätze ab?
Delphi-Quellcode:
procedure TForm1.pruefenTimer(Sender: TObject);
var anzahl: integer;
begin
anzahl:= count.FieldByName('id').AsInteger; // das ist falsch
Label2.Caption := 'Anzahl Datensätze : '+ InttoStr(anzahl);
end;