web-dev-qa-db-ja.com

接続文字列からユーザー名とパスワードを取得する正しい方法は?

私はこのような接続文字列を持っています:

"SERVER=localhost;DATABASE=tree;UID=root;PASSWORD=branch;Min Pool Size = 0;Max Pool Size=200"

さまざまなデータベースパラメータを取得するにはどうすればよいですか?次のようにデータベース名とサーバーを取得できます。

serverName = conObject.DataSource;
dbName = conObject.Database;

同様に、ユーザー名とパスワードも必要です。 MySqlConnectionオブジェクトにプロパティが設定されていません。

現在、私はこのようにしています:

public static void GetDatabaseParameters(string connectionString, out string serverName, out string dbName, out string userName, out string password)
{
    Match m = Regex.Match(connectionString, "SERVER=(.*?);DATABASE=(.*?);UID=(.*?);PASSWORD=(.*?);.*");

    //serverName = m.Groups[1].Value;
    //dbName = m.Groups[2].Value;
    userName = m.Groups[3].Value;
    password = m.Groups[4].Value;
}

ここで認められた慣習はありますか?

20
nawfal

SqlConnectionStringBuilder クラスを使用できます

string conString = "SERVER=localhost;DATABASE=tree;UID=root;PASSWORD=branch;Min Pool Size = 0;Max Pool Size=200";
SqlConnectionStringBuilder builder = new SqlConnectionStringBuilder(conString);
string user = builder.UserID;
string pass = builder.Password;
48
ionden