In VS.Net 2005 Is it possible to replicate data between a windows form
and a SQL 2005 database?

Re: Data Replication from Windows Form to SQL Server by RobinS

RobinS
Thu Jan 25 16:02:32 CST 2007

Depends on what you mean by that. You can read it from the database
and put it in the form; you can read it from the form and put it into
the database. A little databinding in the middle makes it happen
automatically.

Robin S.
-----------------------------------
<robin9876@hotmail.com> wrote in message
news:1169741862.367549.210960@v33g2000cwv.googlegroups.com...
> In VS.Net 2005 Is it possible to replicate data between a windows form
> and a SQL 2005 database?
>



Re: Data Replication from Windows Form to SQL Server by robin9876

robin9876
Fri Jan 26 05:09:21 CST 2007

How would you securely store the information on the client in between
connecting to the main database?

On Jan 25, 10:02 pm, "RobinS" <Rob...@NoSpam.yah.none> wrote:
> Depends on what you mean by that. You can read it from the database
> and put it in the form; you can read it from the form and put it into
> the database. A little databinding in the middle makes it happen
> automatically.
>
> Robin S.
> -----------------------------------<robin9...@hotmail.com> wrote in messagenews:1169741862.367549.210960@v33g2000cwv.googlegroups.com...
>
> > In VS.Net 2005 Is it possible to replicate data between a windows form
> > and a SQL 2005 database?


Re: Data Replication from Windows Form to SQL Server by RobinS

RobinS
Fri Jan 26 14:10:34 CST 2007

Some kind of binary serialization probably. Depends on how secure it
needs to be.

Robin S.
-------------------------
<robin9876@hotmail.com> wrote in message
news:1169809761.339816.201770@q2g2000cwa.googlegroups.com...
> How would you securely store the information on the client in between
> connecting to the main database?
>
> On Jan 25, 10:02 pm, "RobinS" <Rob...@NoSpam.yah.none> wrote:
>> Depends on what you mean by that. You can read it from the database
>> and put it in the form; you can read it from the form and put it into
>> the database. A little databinding in the middle makes it happen
>> automatically.
>>
>> Robin S.
>> -----------------------------------<robin9...@hotmail.com> wrote in
>> messagenews:1169741862.367549.210960@v33g2000cwv.googlegroups.com...
>>
>> > In VS.Net 2005 Is it possible to replicate data between a windows
>> > form
>> > and a SQL 2005 database?
>



Re: Data Replication from Windows Form to SQL Server by robin9876

robin9876
Mon Jan 29 05:59:58 CST 2007

What process is used to create a binary serialisation file?

On Jan 26, 8:10 pm, "RobinS" <Rob...@NoSpam.yah.none> wrote:
> Some kind of binary serialization probably. Depends on how secure it
> needs to be.
>
> Robin S.
> -------------------------<robin9...@hotmail.com> wrote in messagenews:1169809761.339816.201770@q2g2000cwa.googlegroups.com...
>
> > How would you securely store the information on the client in between
> > connecting to the main database?
>
> > On Jan 25, 10:02 pm, "RobinS" <Rob...@NoSpam.yah.none> wrote:
> >> Depends on what you mean by that. You can read it from the database
> >> and put it in the form; you can read it from the form and put it into
> >> the database. A little databinding in the middle makes it happen
> >> automatically.
>
> >> Robin S.
> >> -----------------------------------<robin9...@hotmail.com> wrote in
> >> messagenews:1169741862.367549.210960@v33g2000cwv.googlegroups.com...
>
> >> > In VS.Net 2005 Is it possible to replicate data between a windows
> >> > form
> >> > and a SQL 2005 database?


Re: Data Replication from Windows Form to SQL Server by RobinS

RobinS
Wed Jan 31 02:05:59 CST 2007

Actually, Binary Serialization isn't good enough; you can still see some of
the data. You need to check out the Encryption classes in .Net. Check out
MSDN and search for Encryption or cryptography.

Robin S.
---------------------------
<robin9876@hotmail.com> wrote in message
news:1170071998.607877.65800@v45g2000cwv.googlegroups.com...
> What process is used to create a binary serialisation file?
>
> On Jan 26, 8:10 pm, "RobinS" <Rob...@NoSpam.yah.none> wrote:
>> Some kind of binary serialization probably. Depends on how secure it
>> needs to be.
>>
>> Robin S.
>> -------------------------<robin9...@hotmail.com> wrote in
>> messagenews:1169809761.339816.201770@q2g2000cwa.googlegroups.com...
>>
>> > How would you securely store the information on the client in between
>> > connecting to the main database?
>>
>> > On Jan 25, 10:02 pm, "RobinS" <Rob...@NoSpam.yah.none> wrote:
>> >> Depends on what you mean by that. You can read it from the database
>> >> and put it in the form; you can read it from the form and put it into
>> >> the database. A little databinding in the middle makes it happen
>> >> automatically.
>>
>> >> Robin S.
>> >> -----------------------------------<robin9...@hotmail.com> wrote in
>> >> messagenews:1169741862.367549.210960@v33g2000cwv.googlegroups.com...
>>
>> >> > In VS.Net 2005 Is it possible to replicate data between a windows
>> >> > form
>> >> > and a SQL 2005 database?
>