i heard of SQL CE. but i wonder how do i apply it to my current window app + sqlserver. Understanding: If the window app failed to connect to the hosting server(sqlexpress) through internet, then all data key in through offline mode will be saved in client's PC through SQLCE and it will be stored in my client PC. Data keyed in during offline mode will then be PUSHED to the server once back to ONLINE.

Question:

  1. If i have 3 GB of data in server(sql Express), when my client launch the window app for the first time, will it load all the data from the server to my client pc SQLCE? Is the Data in server must always tally with the data in client PC SQLCE? If the answer is YES, then it will surely be taking up a lot of time.

  2. Could you share me any SQLCE sample project on this which it has CRUD transaction with database. I have search online but found no sample project on this.

Please kindly inform me if my understanding is wrong.

link|improve this question

63% accept rate
feedback

1 Answer

up vote 0 down vote accepted

In regards to you first point:

If you are talking about using RDA then this would be the case yes. According to this thread on MSDN RDA is only good for small databases as it has to pull the whole table always. Alternatively you might want to have a look at Sync Services for ADO .NET. Here is a tutorial to get started. Further down that article there is a piece of code setting the sync direction to bidirectional however you can also set it to UploadOnly which sounds like what you want.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.