After I installed the version 6.50.0.37 21-Aug-08
I began to have problems with tables master / detail during insertion, table detail does not bring any record, only if I make a close and then open one.
Why?
Sorry for my BAD english.
PS: Build again in version 6.50.0.35 and all ok.
Master/Detail error in version 6.50.0.37
The new ODAC version does not refresh the detail dataset when a record is inserted in the master dataset.
In the next ODAC build we'll add the RefreshParamsOnInsert global variable that you can set to True to get the old behaviour:
In the next ODAC build we'll add the RefreshParamsOnInsert global variable that you can set to True to get the old behaviour:
Code: Select all
initialization
RefreshParamsOnInsert := True;
end;His trick worked, but it would be possible to include this option in TOraSession? All I create new datamodule have to remember to put this code or I will have problems.
Thanks.
Sorry by my bad english
Thanks.
Sorry by my bad english
Plash wrote:The new ODAC version does not refresh the detail dataset when a record is inserted in the master dataset.
In the next ODAC build we'll add the RefreshParamsOnInsert global variable that you can set to True to get the old behaviour:Code: Select all
initialization RefreshParamsOnInsert := True; end;