Is there any method exist to extract DB path from connection string? I need to check if DB files are exist at the beginning & back them up if file archive flag changed (file modified).

Sample connection string:

strConn = "Data Source=|DataDirectory|\dbAlias.sdf";
link|improve this question

77% accept rate
feedback

3 Answers

up vote 1 down vote accepted

A bit late perhaps, but I came across this question wile struggling with the same problem. You can find the location of the |DataDirectory| folder with AppDomain.CurrentDomain.GetData("DataDirectory"). So your connectionstring can be translated like this:

strConn .Replace("|DataDirectory|", AppDomain.CurrentDomain.GetData("DataDirectory").ToString())
link|improve this answer
feedback

You can use SqlCeConnectionStringBuilder class to parse existing Sql Compact connection string.

link|improve this answer
1  
It would be nice to explain to him what property contains the DataDirectory he is looking for. – Nix Aug 4 '11 at 13:13
SqlCeConnectionStringBuilder.DataSource gives "|DataDirectory|\\dbPerson.sdf" again, not physical path. – Nime Cloud Aug 4 '11 at 13:17
@Nix: AppDomain.CurrentDomain.SetData("DataDirectory",path); – Nime Cloud Aug 4 '11 at 13:18
feedback

You could just create the connection and get the data source from it as a property:

string data;
using (var conn = new SqlConnection(connectionString)) {
    data = conn.DataSource;
}
link|improve this answer
+1 because you give him the property that defines the directory. – Nix Aug 4 '11 at 13:13
I still need to find |DataDirectory| alias. Currently I know it but how about other aliases -if any- Absolute path would be nice.... – Nime Cloud Aug 4 '11 at 13:23
Is there any other alias like |DataDirectory| ? – Nime Cloud Aug 4 '11 at 15:04
feedback

Your Answer

 
or
required, but never shown

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