Re: multiple tables in a flat grid by W
W
Tue Apr 05 09:46:26 CDT 2005
I think you can still essentially do what you're looking for. But if you
just wrote a proc to get the data how you wanted it, then pull it all over,
and when the client changes the data you can just send an update/insert via
executenonquery - you should be good to go.
Please note that normally I'd advise JUST the opposite of this approach -
namely that I would use the DataRelations and have different adapters for
the parent/child tables. In this instance though, based on what you are
trying to do, it would save some work doing the heavy lifting server side
since you have 1-1 relationship and you need specialized binding. A lot of
time UI requirements muddy the water.
--
W.G. Ryan, MVP
www.tibasolutions.com | www.devbuzz.com | www.knowdotnet.com
"The Burgess Family" <chrisburgess@gmail.com> wrote in message
news:1112704235.278289.105140@z14g2000cwz.googlegroups.com...
> Thanks for the advice, Bill.
>
> I'm building a forecasting system for reps to forecast different
> accounts. The products they're forecasting never change, so I was
> trying to pull the product information over to the client once, and
> then go back and forth to the server for just the updates the rep
> enters in.
>
> The product query is using data from another system and takes much
> longer to pull (some of the fields are UDFs).
>
> Seemed like a simple problem, but apparently not.
>
> CB
>