Connection String object Convert to String Variable Type

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

does anyone have an example of how to get the connection string object
converted to a string variable type in order for me to call a function?
 
A Connection String is just that: a string. It's not an object. So,
congratulations, you already have what you need!

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living
 
ConnectionString property of a SqlConnection/OleDbConnection IS string type,
not need to convert it to string type.
 
Back
Top