Subject | Re: [IBO] Unsure of editablitly in join select |
---|---|
Author | Ryan Nilsson-Harding |
Post date | 2002-09-30T02:40:52Z |
> Assuming the select statement for your grid looks something likethis:
>Yes, thats coorect.
> select
> pq.PART_ID,
> p.PART_NUMBER,
> pq.USER_ID,
> pq.QTY
> from PartsQuantity pq
> join Parts p
> on pq.PART_ID = p.PART_ID
> then you can set the dataset's RequestLive property true and enterfields
> PartsQuantity into the KeyRelation property in order to make the
> from the PartsQuantity table updateable.I had the requestLive, but not the KeyRelation
> >Is using a IB_LookupCombo in the grid to display the part numbersa
> >bad way to do this?using the
> >At the moment, the part table has around 2000 records,
>
> It's OK for 2000 records - but there is a better way, if you are
> native IBO data access - please confirm.Yes, using native IBO access.
> >but this will eventually be around 10,000 records.table
>
> Not OK for 10,000 records. That also suggests that your PartsQty
> will be huge also and will require some serious restriction bysome WHERE
> criteria.Yes, restricted by WHERE USER_ID = :uid
So only a particular user's parts are displayed at a time.
> >I am just wondering if this is a poor design because of the sizeof
> >the part table,parts, e.g.
>
> It's a poor design if you have no way to limit the selection of
> a part type or some other sort of grouping device so that you canapply a
> WHERE criterion to get a smaller subset of Parts records.this sort
>
> There is a lot more to be said about the techniques involved in
> of application task, including alternative ways to make joineddatasets
> updatable. More information about data structures and componentsin use
> would help.Understand.
I have applied the KeyRelation, and now I can edit the QTY field,
but not the PART_ID field. I am assuming that this is because I am
displaying the PART_NUMBER (through the join) and there is no way
IBO can go off and retrieve the PART_ID whenever a new PART_NUMBER
is entered.
Rgds,
-Ryan