We used this code with NT4.0, Delphi 4 and DOA v3.23. Now we want to upgrade to W2K, Delphi 5 and the newest DOA Version. A compile failed because it cant find the class
TOracleSession.DataSets.Count
Any ideas? Can we use another class instead of DataSets.Count?
*************************
begin
for i:= 0 to Session.DataSets.Count - 1 do
begin
if TOracleDataSet(Session.DataSets).Modified or
TOracleDataSet(Session.DataSets).updatespending then
begin
found := true;
end;
end;
end;
********************************
Thanx in advance,
Martin
TOracleSession.DataSets.Count
Any ideas? Can we use another class instead of DataSets.Count?
*************************
begin
for i:= 0 to Session.DataSets.Count - 1 do
begin
if TOracleDataSet(Session.DataSets).Modified or
TOracleDataSet(Session.DataSets).updatespending then
begin
found := true;
end;
end;
end;
********************************
Thanx in advance,
Martin