Hi All,
<add key="Key1" value="Provider=SQLOLEDB.1;data source=serveripaddress;Initial Catalog=DB1;user id=uid;Password=***"/>
I gave the above string,I want to get the serveripaddress,DB1,uid and **** these values from that string.
|
|
Hi All,
I gave the above string,I want to get the serveripaddress,DB1,uid and **** these values from that string.
|
|||
|
|
|
There is no need to parse a connection string when the BCL can do it for you:
Note that for an OLE DB connection string, only the standard cross-provider properties have strongly-typed property names, all the rest are accessed via the indexer. |
||
|
|
|
|
Don't use a regex. Parse the connection string using
Much easier, more maintainable and more reliable. |
||
|
|
|
|
You then have the matches in groups 1 to 4. If you get bored you can name the groups; helps readability of the code, though rarely helps readability of the regex itself. |
||
|
|
Isn't it easier to split value using ';' char and then split every item by '=' char? This way your connection string could be edited by users and even item order could be changed. |
||
|
|