there is a Access Violation in frxSDACComponents.pas in
Code: Select all
procedure TSDACTable.InitFieldDefs;
begin
if (TableName <> '') and (Assigned(Connection)) then
inherited; <-- here it occurs.
end;
best regards
Hans
Code: Select all
procedure TSDACTable.InitFieldDefs;
begin
if (TableName <> '') and (Assigned(Connection)) then
inherited; <-- here it occurs.
end;