up vote 1 down vote favorite
1
share [g+] share [fb]

I'm writing a desktop app which needs a simple persistence layer - I found out about SubSonic and it's capability to work with SQLite. However I need to keep the database file in user's AppData folder and don't know how to put such value into app.config - I don't want to use absolute paths.

Can app.config somehow access enviroment variables or reference application data folder?

link|improve this question

53% accept rate
feedback

4 Answers

up vote 1 down vote accepted

There's no way to specify the AppData folder in the app.config for a connections string.

But what you could do is write the value to the config file either during install or when the application is first run.

link|improve this answer
Could you write/link an example on how to do that? – dahpgjgamgan Apr 30 '09 at 18:08
You can read/write the config file using the ConfigurationManager Class. Example: social.msdn.microsoft.com/forums/en-US/winforms/thread/… MSDN docs: msdn.microsoft.com/en-us/library/… – Adam Apr 30 '09 at 18:32
feedback

For subsonic v2.x I would ignore the app.config connection string and just set it at runtime before working with the database. The provider name stays the same of course.

string dbPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), @"MyApplication\Northwind.db3");

DataService.Providers["Northwind"].DefaultConnectionString =
            String.Format(@"Data Source={0};Version=3;New=False;Connection Timeout=3", dbPath);
link|improve this answer
See also stackoverflow.com/questions/2079781/… – Rory Feb 18 '10 at 15:23
feedback

The "framework way" of finding appdata is to use Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)

This will find the correct appdata path regardless of platform.

link|improve this answer
feedback

There are several ways if you are using ASP.NET , in either language

Server.MapPath("~") will return the root of the application as a full path name then you can just add "/app_data" to it to get you're full path.

Alternatively inspect the HttpContext.Current.Request and HttpContext.Current.Application there are numerous ( and much better then the one I just mentioned ) properties that will provide you with the same folder - being the root of the application as s full path.

Note that these should all work even if you have the application as a virtual folder and a regular folder with an application configures in IIS on that folder

However this is only possible at runtime , so it can't really be mentioned in the app.config. you could try using relaltive paths from where the app.config is resident IE "../App_Data" or "/App_data" but I'm not sure of you're exact requirements.

Good luck

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.