如何在 AppData 文件夹中部署 SQL Compact Edition 数据库文件 (.sdf)?连接字符串?

发布于 2024-10-04 13:35:04 字数 495 浏览 3 评论 0原文

我计划将数据库文件部署在 Users\CurrentUserName\AppData 文件夹中,因为默认用户帐户控制设置限制对安装程序的 Program Files 目录的写入访问权限。
第一个问题——这是正确的吗?

到目前为止,我已经创建了一个自定义文件夹,将 DefaultLocation 属性设置为 [LocalAppDataFolder][ProductName],并将 .sdf 文件放入该文件夹中。
这在 Windows 7 中有效,但似乎在 Windows XP 中不起作用 - 我找不到任何部署它的迹象。

那么我应该在哪里以及如何部署 DB 文件呢?

我还不确定如何将连接字符串设置为 [LocalAppDataFolder] 位置 - 有什么建议吗?

编辑: 该应用程序是一个 WinForms 应用程序,可以从网站下载并使用通过安装项目创建的安装程序进行安装。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

人│生佛魔见 2024-10-11 13:35:04

这对我有用:

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

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

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);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文