SQL Server CE 3.5 SP1 Stored Procedures

Posted by Robert on Stack Overflow See other posts from Stack Overflow or by Robert
Published on 2010-02-16T22:46:43Z Indexed on 2010/03/26 17:03 UTC
Read the original article Hit count: 304

I have been tasked with taking an existing WinForms application and modifying it to work in an "occasionally-connected" mode. This was to be achieved with SQL Server CE 3.5 on a user's laptop and sync the server and client either via SQL Server Merge Replication or utilizing Microsoft's Sync Framework.

Currently, the application connects to our SQL Server and retrieves, inserts, updates data using stored procedures. I have read that SQL Server CE does not support stored procedures.

Does this mean that all my stored procedures will need to be converted to straight SQL statements, either in my code or as a query inside a tableadapter?

If this is true, what are my alternatives?

© Stack Overflow or respective owner

Related posts about c#

Related posts about sql-server-ce