Re: Strongly typed dataset and remoting
- From: "Sakke" <sakke@xxxxxxxxxxxxxxxx>
- Date: Tue, 12 Jul 2005 10:32:11 +0300
Thanks!
I decide use second way and it worked fine :)
"Beth Massi [Architect MVP]" <bmassi@xxxxxxxxxxx> wrote in message
news:eagxNoihFHA.1148@xxxxxxxxxxxxxxxxxxxxxxx
> Either way will work.
>
> You can serialize strongly typed datasets via remoting as long as both the
> client and the server have the type information available. You can put
> your typed dataset into a shared assembly (dll) that you copy to both the
> server and the client.
>
> You can also send un-typed datasets to the server from a typed dataset on
> the client.
>
> Dim ds as New DataSet(MyTypedDataSet.DatasetName)
> ds.EnforceConstraints = MyTypedDataSet.EnforceConstraints
> ds.Merge(MyTypedDataset.GetChanges(), False)
> '-- ds is an untyped dataset containing the changes (diffgram)
>
> HTH,
> -B
>
> "Sakke" <sakke@xxxxxxxxxxxxxxxx> wrote in message
> news:unv%23hXghFHA.3912@xxxxxxxxxxxxxxxxxxxxxxx
>> Hi,
>> I have problem with strongly typed dataset and remoting.
>>
>> I have strongly typed dataset in client and I want sent it to server via
>> remoting. How I can do that? I need data and diffgram statuses in server
>> (inserted, modified)
>>
>> If is not possible, can I some how convert strongly typed dataset to
>> plain dataset and still have diffgram statuses?
>>
>> Thanks for advices
>>
>>
>>
>
>
.
- References:
- Strongly typed dataset and remoting
- From: Sakke
- Re: Strongly typed dataset and remoting
- From: Beth Massi [Architect MVP]
- Strongly typed dataset and remoting
- Prev by Date: Re: Events in .Net Remoting
- Next by Date: Problem with Send stream to remote installation
- Previous by thread: Re: Strongly typed dataset and remoting
- Next by thread: IE hosted control - 100 sec delay at startup
- Index(es):
Relevant Pages
|