vote up 0 vote down star

Using C#, I need to build a connection string from a few AppSettings. If I do this:

Connection = string.Format("Data Source={0};Initial Catalog={1);User Id={2};Password={3};",
  ConfigurationManager.AppSettings.Get("CartServer"),
  ConfigurationManager.AppSettings.Get("CartDatabase"),
  ConfigurationManager.AppSettings.Get("CartUserName"),
  ConfigurationManager.AppSettings.Get("CartPassword"));

I get an invalid format string exception. I narrowed it down to the "Password=" part of the format string (ie, "Passwork=" works). There's an easy enough work-around:

Connection = string.Format("Data Source={0};Initial Catalog={1);User Id={2};{3}={4};",
  ConfigurationManager.AppSettings.Get("CartServer"),
  ConfigurationManager.AppSettings.Get("CartDatabase"),
  ConfigurationManager.AppSettings.Get("CartUserName"),
  "Password",ConfigurationManager.AppSettings.Get("CartPassword")); // Lame!!!

But what's the real story with the "Password"? I checked MSDN and a few other sites but came up empty. Oh, if it matters, this is a WCF service.

flag

50% accept rate
Is there a small possibility that your second example is not exactly how it's in your original source? – Dave Van den Eynde Mar 4 at 15:37
Yes there is a strong possibility! – Marc Bernier Mar 4 at 15:38

6 Answers

vote up 14 vote down check

Your problem is the {1) in the format string; it should be {1} (you have closed the brace with a parenthesis)

This is causing your FormatException because your format string is now invalid. Why your second entry works is beyond me though.

Edit: I agree with the other Richard that you should consider using a connection string builder object.

link|flag
vote up 0 vote down

Why StringBuilder is better than string.Format?

Please check this http://stackoverflow.com/questions/6785/is-string-format-as-efficient-as-stringbuilder to see why...

link|flag
vote up 0 vote down

Why stringbuilder? String.Format() is entirely appropriate here.

link|flag
vote up 0 vote down

I just Google'd and I had no idea a "DbConnectionStringBuilder" even existed. Wow, you learn something new everyday.

Also, for other connection strings, check this site out: http://www.connectionstrings.com/

link|flag
vote up 3 vote down

Obvious.... your problem is because this: "(".

Why don't you use StringBuider class, is easier :)

link|flag
Don't you mean this: ")" ? – Richard Szalay Mar 4 at 15:35
gets my vote, but I'd like to see how StringBuilder is easier. string.Format (once you get used to the curly brackets) seems about as easy as easy gets. I know there are performance advantages to StringBuilders, but I haven't seen anyone say it's easier. – dnord Mar 4 at 15:43
Yes it was! How embarrassing... In my defense, } and ) look very similar in VS2008's default font. – Marc Bernier Mar 4 at 15:44
@dnord - out of interest, why did it get your vote? He answered last, and specified the wrong parenthesis as being the cause. It's possible I've completely missed something. – Richard Szalay Mar 4 at 15:45
Why this is the accepted answer? last posted, and Richard already has answered it. – Sunny Mar 4 at 16:43
show 2 more comments
vote up 7 vote down

Have you considered the DbConnectionStringBuilder class (or one of its subtypes)?

link|flag

Your Answer

Get an OpenID
or

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