|
sql
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Disconnected app with sql server compactHi
I am developing an app in vb.net 2008 with sql server 2000 backend. I also need disconnected version of the app for laptop users who would connect off and on with LAN and thereby with the company sql server 2000. I am wondering if I can use sql server compact 3.5 for local caching when laptops are disconnected. My question is; how would my app use views and stored procedures in disconnected mode as sql server compact does not support either of these. Any help to clarify this would be appreciated. Thanks Regards If you want to use views and stored procedures, then SQL Server Compact is
not an option. However, you can use SQL Server Express, which supports procedural T-SQL. HTH, Plamen Ratchev http://www.SQLStudio.com The local Compact Edition database could be used for data caching. You could
write your own managed code to access it but as you found, there is no support for SPs or Views. Your only other alternative would be to use the Express edition on the client system which does support SPs and Views. In either case you would want to use one of the various synchronization paradigms to keep the two databases in sync. -- Show quote____________________________________ William (Bill) Vaughn Author, Mentor, Consultant, Dad, Grandpa Microsoft MVP INETA Speaker www.betav.com www.betav.com/blog/billva Please reply only to the newsgroup so that others can benefit. This posting is provided "AS IS" with no warranties, and confers no rights. __________________________________ Visit www.hitchhikerguides.net to get more information on my latest book: Hitchhiker's Guide to Visual Studio and SQL Server (7th Edition) and Hitchhiker's Guide to SQL Server 2005 Compact Edition (EBook) ----------------------------------------------------------------------------------------------------------------------- "John" <John@nospam.infovis.co.uk> wrote in message news:O5clkypMIHA.4480@TK2MSFTNGP06.phx.gbl... > Hi > > I am developing an app in vb.net 2008 with sql server 2000 backend. I also > need disconnected version of the app for laptop users who would connect > off and on with LAN and thereby with the company sql server 2000. I am > wondering if I can use sql server compact 3.5 for local caching when > laptops are disconnected. My question is; how would my app use views and > stored procedures in disconnected mode as sql server compact does not > support either of these. Any help to clarify this would be appreciated. > > Thanks > > Regards > > |
|||||||||||||||||||||||