SqlConnection dialog

  • Thread starter Thread starter Eran Kaspin
  • Start date Start date
E

Eran Kaspin

Hi,
I writing a win32 app in which the user has to define the
connection string for an sql connection.

How do I show in runtime the dialog that is used to build
a connection string in design time?

TIA
 
Unfortunatelly there isn't a managed version of this component avaliable,
you can do the same thing that visual studio did with the native DataLinks
component, I believe it is MSDASC.DataLinks

DataLinks is the component that creates connection strings for native
versions of our providers, you can use the SqlOledb template and then remove
the Providers=SqlOledb... manually from the connection string for a valid
SqlClient connection string and so on.
 
Back
Top