sqlconnection

Why does SqlConnection forget the database type

I recently posted (and promptly deleted, when I decided the question was irrelevant to the actual problem) a question about SqlConnection losing its Database information when the scope of "ChangeDatabase" ends. Example: //Other code... dbConn = new SqlConnection(dbConnBuilder.ConnectionString); dbConn.Open(); dbConn.Cha...