hi,
does PgDAC has cascade feature like cascade open/close of master detail relationship ?
Any Cascade features of Master-Detail ?
Re: Any Cascade features of Master-Detail ?
No, the feature of cascade open/close is very easy to implement, but is not unambiguous enough.
The most obvious that can be done, is to group opening/closing of datasets at your discretion:
The most obvious that can be done, is to group opening/closing of datasets at your discretion:
Code: Select all
procedure CascaseOpen;
begin
dsMaster.Open;
dsDetail1.Open;
dsDetail3.Open;
end;
procedure CascaseClose;
begin
dsDetail1.Close;
dsDetail3.Close;
dsMaster.Close;
end;
Re: Any Cascade features of Master-Detail ?
yes, ofcause that is very easy to implement. but think about to create these procedure really slow down the development time, if the component can provide these simple features really helpful. its ok. thanks a lot.
Re: Any Cascade features of Master-Detail ?
Ok, we will consider this.
Not at all.
Not at all.