getting ADO-like properties from OleDbConnection

  • Thread starter Thread starter Mark
  • Start date Start date
M

Mark

ADO connection objects had a Properties array which you could iterate
to determine connection string values, such as "Persist Security Info"
and the like.

Is there any facility in ADO.NET to do this aside from parsing the
ConnectionString?
 
On 13 May 2004 05:29:04 -0700, (e-mail address removed) (Mark) wrote:

¤ ADO connection objects had a Properties array which you could iterate
¤ to determine connection string values, such as "Persist Security Info"
¤ and the like.
¤
¤ Is there any facility in ADO.NET to do this aside from parsing the
¤ ConnectionString?

Afraid not, although splitting the connection string by the semi-colon should be relatively trivial.


Paul ~~~ (e-mail address removed)
Microsoft MVP (Visual Basic)
 
Back
Top