Subject | Re: [IBO] Master Detail with IBO |
---|---|
Author | ra8009 |
Post date | 2004-10-12T02:05:28Z |
--- In IBObjects@yahoogroups.com, Helen Borrie <helebor@t...> wrote:
> At 01:24 AM 12/10/2004 +0000, you wrote:to do?
>
>
> >When a user moves from ojne record to another in a master IBODataset I
> >need a detail IBODataset to change accordingly. Setting the datasource
> >property doesn;t seem to work?? Is there soething more that I need
>ancestor,
> With the TDataset-compatible comps, yes. Exactly as with its VCL
> the TDataset can't make the link if the name of the linking detailcolumn
> does not exact;u match the name, type and, in the case of acomposite key,
> the left-to-right order, of the primary key (or its KeyLinks, to bemore
> exact) in the master.linking
>
> If that is your case, then use a parameterised query in the detail set,
> with a WHERE clause that specifies the link column(s). Then, by
> the detail's Datasource property to the master's datasource, themaster's
> PK (i.e. KeyLinks) will be used to populate the detail's WHERE clauseThanks Helen
> when the master's scroll event occurs.
>
> Helen