Hallo,
folgendes Problem:
mysql Server läuft, Connection kann etabliert werden.
Sobald ich eine Tquery aufs Formular ziehe kann ich zwar noch kompilieren (erfolgreich) aber
wenn ich das Programm starten will erscheint:
an dieser Stelle:
Delphi-Quellcode:
procedure TZAbstractRODataset.Notification(AComponent: TComponent;
Operation: TOperation);
begin
inherited Notification(AComponent, Operation);
if (Operation = opRemove) and (AComponent = FConnection) then
begin
Close;
FConnection := nil;
end;
if (Operation = opRemove) and Assigned(FDataLink)
and (AComponent = FDataLink.Datasource) then FDataLink.DataSource := nil;
Dieser Code:
if (Operation = opRemove) and Assigned(FDataLink)
and (AComponent = FDataLink.Datasource) then
erzeugt eine
Exception: Eaccessviolation...
Offensichtlich hab ich hiermit Probleme: FDataLink.Datasource
Kann mir jemand helfen?
Danke im Vorraus