Click here to Skip to main content
15,900,906 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hai ...
I have completed a windows application project with DB with sqlsever express. My Project consisting of 2 crystal reports too.. But installing the SQL sever express to many clients is a tedious task for them .So I want to change my DB to SQL Server COMPACT edition.
My question is
"Whether all queries and condition will also work in Compact DB. And
Whether Changing from from SQL EXPRESS to COMPACT will be fruitful ???or Is there any idea to build my application light weight???
Posted

It depends on a couple of things.
1) Do you use stored procedures? If you do, then be aware that SqlCE does not support them.
2) Do you chain commands? Again, not supported.
3) Do you need multiuser access? Just about possible, but really not a good idea with SQLCE - it will give you serious grief.
4) Do you need backups? If so, then you are probably better off with SQl Server, because backing up is intrusive on CE - while teh backup is taking place, no other activity can occur.

Other than that, there is a list of differences here: MSDN[^]
 
Share this answer
 
Comments
[no name] 22-Jul-11 3:25am    
Excellent.+5.
This link [^] may be useful - a simple google search found it!

A major issue may be that stored procedures are not available in Compact
 
Share this answer
 
Comments
[no name] 22-Jul-11 3:25am    
Excellent.+5.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900