M
Mr. X.
Hello.
1. Is there any wizard for connectionStringBuilder for each provider (wizard
for oracle, wizard for sqlserver ...)?
2. Specifically SqlConnectionStringBuilder has keys that are for the
connectionStrings :
If I search all the keys :
SqlConnectionStringBuilder csbSqlConn = new
SqlConnectionStringBuilder();
foreach (string e in csbSqlConn.keys)
{
MessageBox.Show(e.ToString());
}
I get lot of keys (the message).
Do I need all of the keys in order to build the connectionString?
If not - how can I find only the necessary keys for building the
connectionString?
Thanks
1. Is there any wizard for connectionStringBuilder for each provider (wizard
for oracle, wizard for sqlserver ...)?
2. Specifically SqlConnectionStringBuilder has keys that are for the
connectionStrings :
If I search all the keys :
SqlConnectionStringBuilder csbSqlConn = new
SqlConnectionStringBuilder();
foreach (string e in csbSqlConn.keys)
{
MessageBox.Show(e.ToString());
}
I get lot of keys (the message).
Do I need all of the keys in order to build the connectionString?
If not - how can I find only the necessary keys for building the
connectionString?
Thanks