vote up 0 vote down star

Any information on how to display the ODBC connections dialog and get the chosen ODBC back?

flag

2 Answers

vote up 1 vote down
    // a_RootKey is Microsoft.Win32.RegistryKey 
    // DSN is a class not provided in this code sample - you can see what properties are needed from the usage below.

    List<DSN> DsnList = new List<DSN>();

    Microsoft.Win32.RegistryKey SearchKey = a_RootKey.OpenSubKey("SOFTWARE\\ODBC\\ODBC.INI\\ODBC Data Sources");

    if (SearchKey != null)
    {

    	foreach (string DsnName in SearchKey.GetValueNames() )
    	{    
    		if ( (string)SearchKey.GetValue(DsnName) == "SQL Server" )
    		{
    			Microsoft.Win32.RegistryKey anotherkey  = a_RootKey.OpenSubKey("SOFTWARE\\ODBC\\ODBC.INI\\" + DSNName);
    			DSN dsn = new DSN();
    			dsn.Name = DSNName;
    			dsn.Server = (string)anotherkey.GetValue("Server");
    			dsn.Database = (string)anotherkey.GetValue("Database");
    			dsn.Driver = (string)anotherkey.GetValue("Driver");

    			DsnList.Add(dsn);
    		}

    	}
    }
    return DsnList;
link|flag
vote up 0 vote down

OK since no one seems to have an answer, how about iterating throught the odbc connections by dbsource, I.e. sqlserver or mysql

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.