hi-
zeos bombs out on this line for me.
i had 4 other compiler errors. something about overriding wasnt necessary
because the code in the ancestor didnt require it so i removed the word
override.
i cant get this latest one patched up though :-(
/home/thirdshift/cvsRoot/zeos/zeosdbo_rework/src/component/ZSqlUpdate.pas(390,34) Fatal: Can't find unit ZSqlUpdate
how can it not find the unit when the compiler stops on a line in the very same unit?
i have a VERY recent lazarus version and the latest zeosdbo_rework.
nothing too critical. i am just up late at night messing around for something to do.
if you know, please let me know on the forum.
<see code below>
thanks,
jim
procedure TZUpdateSQL.RebuildAll;
var
OldParams: TParams;
begin
OldParams := TParams.Create; // this line is where it bombs!
OldParams.Assign(FParams);
FParams.Clear;
try
Rebuild(FModifySQL);
Rebuild(FInsertSQL);
Rebuild(FDeleteSQL);
FParams.AssignValues(OldParams);
finally
OldParams.Free;
end;
end;