Deploying a desktop application with SQL Server Express

我只是一个虾纸丫 提交于 2020-01-02 05:23:16

问题


I have developed a C# 4.0 desktop application that uses a SQL Server Express 2005 database. I have built a Setup and Deployment (msi) package that installs the application and all it's depenedencies, including the mdb database file, into a working folder under the Program Files directory.

The connection string is like this:

Server=.\SQLExpress;AttachDbFilename=|DataDirectory|MyDB.mdf;Database=MyDB;integrated security=true;user instance=true;

The first time a database call is made, the database gets connected to the local SQL Server Express instance.

The installer works as expected on XP computers, however, when tested on Windows 7 machines an exception is thrown the first time a database call is made, which states that there are insufficient permissions on the folder containing the mdb file.

Between Windows XP and Windows 7, windows seems to have locked down permissions on Program Files subfolders. I can solve the problem by setting full permissions to the installation directory, but that seems like cheating.

So my question is this: How should I be configuring the setup and deployment package for this application? Am I doing it right? Do I just need to grant full permissions to all users on the applications directory? If so, how do I achieve this with a VS2010 setup and deployment package? Or should I place the mdb file somehwere else? Or am I totally going about things the wrong way?


回答1:


Here is the complete solution I ended up implementing.

  • In the Setup and Deployment project, in the File System section, I added the SQL Server database file (MDF) to the Common Application Data folder. This is not one of the selectable options from the [Right Click]File System On Target Machine\Add Special Folder menu (for some reason), so I had to select Custom Folder from that menu then in the Default Location property, put "[CommonAppDataFolder][Manufacturer][ProductName]". This made a folder in the Common Application Data Folder, wherever it may be on the target machine (C:\Program Data\ for Win 7) for my product.
  • I needed all users to be able to have full access to this folder for the SQL Server database file to successfully attach and work properly, so the next step was to change permissions on this folder.
  • The only way I could find to do that was to write a Custom Action for the Setup and Deployment project. This link gives a good rundown of how to create and add a Custom Action: http://thedotnetway.blogspot.com.au/2008/10/creating-setup-project-in-vs-2008-w.html
  • This link provides the code that needs to be put into the Custom Actions overridden Install method: C# - Set Directory Permissions for All Users in Windows 7
  • I used System.Environment.GetFolderPath(System.Environment.SpecialFolder.CommonApplicationData) in the Custom Action code to specify the Common Application Data folder.

Hopefully that makes life easier for any developers in the future with similar requirements.




回答2:


There are several options to remedy this situation.

  1. If your application is only perform reading files from the program files. You would just need to run the setup package under Administrator right ( Right click on it , and then select Run as Administrator). Your Db will be written to the expected location.

  2. If you need to perform IO operation (read/write) on files, then you need to put all your files to either Program Data folder

    Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData)

or the current user's data folder

**Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)**

Cheers.



来源:https://stackoverflow.com/questions/11131168/deploying-a-desktop-application-with-sql-server-express

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!