开发者

How to deploy an SQL Compact Edition database file (.sdf) in the AppData folder? Connection string?

开发者 https://www.devze.com 2023-01-27 15:52 出处:网络
I\'m planning to deploy my DB file in the Users\\CurrentUserName\\AppData folder, because default User Account Control settings restrict write access to the Program Files directory where my program is

I'm planning to deploy my DB file in the Users\CurrentUserName\AppData folder, because default User Account Control settings restrict write access to the Program Files directory where my program is installed.

First question - is this correct?

So far, I've created a custom folder开发者_高级运维, set the DefaultLocation property to [LocalAppDataFolder][ProductName], and put the .sdf file in that folder.

This works in Windows 7, but it doesn't seem to work in Windows XP - I can't find any sign of it being deployed anywhere.

So where and how should I deploy the DB file?

I'm also unsure how to set the connection string to the [LocalAppDataFolder] location - any suggestions?

Edit: The application is a WinForms application which will be downloaded from a website and installed using the installer created with Setup Project.


This works for me:

string fileName = System.IO.Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "SqlCe35AddinStore.sdf");

string connString = string.Format("Data Source={0};", fileName);
0

精彩评论

暂无评论...
验证码 换一张
取 消