ApplyUpdates

Discussion of open issues, suggestions and bugs regarding ODAC (Oracle Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
Janusz

ApplyUpdates

Post by Janusz » Tue 13 Jun 2006 09:15

What's wrong?
After update message:
'Not found field corresponding parameter OLD_ROWID'

Delphi2005;ODAC;Oracle10g


try
OraSession1.StartTransaction;
OraTable.Edit;
OraTable.Fields[0].Value := 0;
OraTable.Post;
OraTable.ApplyUpdates;
OraSession1.Commit;
except
OraTable.RestoreUpdates;
OraSession1.Rollback;
raise;
end;
OraTable.CommitUpdates;

Plash
Devart Team
Posts: 2844
Joined: Wed 10 May 2006 07:09

Post by Plash » Tue 13 Jun 2006 11:20

We cannot reproduce the error. Please specify this situation more detailed. If it is possible send to ODAC support address complete sample that demonstrates the problem and include script to create server objects.

Post Reply