.net Compact Edition 2.0, SQL Server Compact Edition and replication - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T01:57:45Z http://stackoverflow.com/feeds/question/981373 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/981373/net-compact-edition-2-0-sql-server-compact-edition-and-replication 0 .net Compact Edition 2.0, SQL Server Compact Edition and replication sarkie 2009-06-11T14:17:20Z 2009-07-03T19:17:00Z <p>Hi Guys,</p> <p>I have been tasked with creating a mobile application for a Windows 6.0 CE device which is running .NET 2.0.7045.0 Compact Framework.</p> <p>I have SQL Server 2005 Express running on my local machine and I want to let the Mobile Application have a replication or snapshot of my database, so the users can update the data in the field. Once they return they can sync back up with the device and update the Database with the updated data.</p> <p>I have zero experience with this, so any help would be appreciated.</p> <p>I have managed to get my IDE (Visual Studio 2008 Pro) talking to it and I can run my Applications and debug on it.</p> <p>I assume once the device has been attached to it, it can connect to the computer ipaddress\instance or something?</p> <p>Does this sound like the correct way to do it? </p> <p>Cheers, Sarkie</p> http://stackoverflow.com/questions/981373/net-compact-edition-2-0-sql-server-compact-edition-and-replication/981430#981430 1 Answer by tomlog for .net Compact Edition 2.0, SQL Server Compact Edition and replication tomlog 2009-06-11T14:26:49Z 2009-06-11T14:26:49Z <p>Yes, that sounds right. Your PDA will have an IP address assigned to its ActiveSync connection, and so will your PC (have a look under Network Connections, there should be a Windows Mobile Adapter there and you can look up the PCs IP address there). That is assuming it uses ActiveSync, but you do mention Windows CE, so maybe you connect it in a different way?</p> <p>I assume you already know how to get the database replication going? If not, here's an <a href="http://msdn.microsoft.com/en-us/library/ms151323.aspx" rel="nofollow">article</a> to guide you in the right direction.</p> http://stackoverflow.com/questions/981373/net-compact-edition-2-0-sql-server-compact-edition-and-replication/1080524#1080524 0 Answer by SClark for .net Compact Edition 2.0, SQL Server Compact Edition and replication SClark 2009-07-03T19:14:03Z 2009-07-03T19:14:03Z <p>You may want to look at using RDA (Remote Data Access) - which is well supported by SQL Server Express - instead of Merge-Replication to achieve what you need. While Merge-Replication is more flexible, it requires making changes to the host database. RDA is easier to use and only requires a basic setup and DLL to be added to SQL Server.</p> <p>See <a href="http://msdn.microsoft.com/en-us/library/ms172917.aspx" rel="nofollow">Microsoft's information on that.</a></p> http://stackoverflow.com/questions/981373/net-compact-edition-2-0-sql-server-compact-edition-and-replication/1080531#1080531 0 Answer by pho3nix for .net Compact Edition 2.0, SQL Server Compact Edition and replication pho3nix 2009-07-03T19:17:00Z 2009-07-03T19:17:00Z <p>try <a href="http://en.wikipedia.org/wiki/Microsoft%5FSync%5FFramework" rel="nofollow">Microsoft Sync Framework</a> its cool and fast way.</p>