Data Replication from Windows Form to SQL Server

  • Thread starter Thread starter robin9876
  • Start date Start date
R

robin9876

In VS.Net 2005 Is it possible to replicate data between a windows form
and a SQL 2005 database?
 
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.
 
How would you securely store the information on the client in between
connecting to the main database?
 
Some kind of binary serialization probably. Depends on how secure it
needs to be.

Robin S.
-------------------------
 
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.
---------------------------
 
Back
Top