Click here to Skip to main content
15,917,618 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralFormatting with Minimum and Maximum Places Pin
Brady Kelly16-Jul-08 5:19
Brady Kelly16-Jul-08 5:19 
GeneralRe: Formatting with Minimum and Maximum Places Pin
drweb8616-Jul-08 5:39
drweb8616-Jul-08 5:39 
GeneralRe: Formatting with Minimum and Maximum Places Pin
Brady Kelly16-Jul-08 5:46
Brady Kelly16-Jul-08 5:46 
Questionsynchronization of options Pin
drweb8616-Jul-08 3:20
drweb8616-Jul-08 3:20 
AnswerRe: synchronization of options Pin
Mark Salsbery16-Jul-08 7:38
Mark Salsbery16-Jul-08 7:38 
GeneralRe: synchronization of options Pin
drweb8616-Jul-08 20:27
drweb8616-Jul-08 20:27 
QuestionData Synchronization and Retrieval Pin
CodingYoshi16-Jul-08 3:15
CodingYoshi16-Jul-08 3:15 
AnswerRe: Data Synchronization and Retrieval Pin
Wendelius17-Jul-08 7:40
mentorWendelius17-Jul-08 7:40 
Hi,

1. I believe you have several options. Some of those are:
- use SQL Server compact edition on laptop. This way you have full database engine on laptop and you can use it as the normal database. In this case you can use replication between master and replicant database and no custom code is needed in order to transfer data between databases.
- save the tables as datasets directly using datasets WriteXml method. This is an easy way to serialize the data. Remember to store if rows are modified on laptop (don't accept changes until you get the data back to the server).

2. This depends on your solution. If you're meaning replication done using SQL Server, pull may be easier to implement but on the other hand it's not necessarily as secure as push.

3. - First of all security. How can get the data to laptop and which laptop. How and where the data is stored in laptop (root of C-drive may not be the best option Smile | :) ). Is the data encrypted and so on.
- modifications. If the data can be modified only in one place, you must implement logic how to prevent modifications in other places. For example if data is on the laptop, can it be updated at the server...
- Simultaneous modifications. If the data can be updated anywhere, you will end up to conflicts. This happens when data is modified in two places separately. When the data is combined from laptop to the server and the server is not in original state (as the data was when it was taken to laptop), what is the right conclusion (there's no obvious answer to this). Perhaps, the lates is correct or combination of both updates or so on... This is typically the most challenging issue in this kind of project...


Hope this helps you,

Mika
GeneralRe: Data Synchronization and Retrieval Pin
CodingYoshi19-Jul-08 8:52
CodingYoshi19-Jul-08 8:52 
GeneralRe: Data Synchronization and Retrieval Pin
Wendelius19-Jul-08 9:06
mentorWendelius19-Jul-08 9:06 
GeneralRe: Data Synchronization and Retrieval Pin
CodingYoshi19-Jul-08 9:28
CodingYoshi19-Jul-08 9:28 
Question"Feature" in VS 2005, 2008? Pin
equalizer70016-Jul-08 2:42
equalizer70016-Jul-08 2:42 
QuestionCertification Request in .Net Pin
whaese15-Jul-08 22:10
whaese15-Jul-08 22:10 
AnswerRe: Certification Request in .Net Pin
Colin Angus Mackay16-Jul-08 4:10
Colin Angus Mackay16-Jul-08 4:10 
GeneralRe: Certification Request in .Net Pin
whaese16-Jul-08 20:53
whaese16-Jul-08 20:53 
QuestionHow VS 2008 Support Visual Source Safe. Pin
Binod K15-Jul-08 19:50
Binod K15-Jul-08 19:50 
AnswerRe: How VS 2008 Support Visual Source Safe. Pin
Colin Angus Mackay16-Jul-08 4:09
Colin Angus Mackay16-Jul-08 4:09 
AnswerRe: How VS 2008 Support Visual Source Safe. Pin
Oshtri Deka28-Jul-08 0:42
professionalOshtri Deka28-Jul-08 0:42 
QuestionLoading a .NET 2.0 assembly in a .NET 1.1 application Pin
Douglas Jimenez15-Jul-08 14:53
Douglas Jimenez15-Jul-08 14:53 
AnswerRe: Loading a .NET 2.0 assembly in a .NET 1.1 application Pin
Luc Pattyn15-Jul-08 15:07
sitebuilderLuc Pattyn15-Jul-08 15:07 
GeneralRe: Loading a .NET 2.0 assembly in a .NET 1.1 application Pin
Douglas Jimenez15-Jul-08 16:04
Douglas Jimenez15-Jul-08 16:04 
GeneralRe: Loading a .NET 2.0 assembly in a .NET 1.1 application Pin
Elroy Dsilva15-Jul-08 21:50
Elroy Dsilva15-Jul-08 21:50 
GeneralRe: Loading a .NET 2.0 assembly in a .NET 1.1 application Pin
Thomas Stockwell16-Jul-08 4:57
professionalThomas Stockwell16-Jul-08 4:57 
QuestionMonitor Timer handler Pin
Sushma K14-Jul-08 19:39
Sushma K14-Jul-08 19:39 
AnswerRe: Monitor Timer handler Pin
led mike15-Jul-08 5:15
led mike15-Jul-08 5:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.