ODBC 接続ダイアログを表示し、選択した ODBC を取得する方法に関する情報はありますか?
質問する
1974 次
2 に答える
2
// 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;
于 2008-09-15T17:57:36.633 に答える
0
誰も答えを持っていないようなので、DBSource、つまりSQLServerまたはMySQLによるODBC接続を反復するのはどうですか
于 2008-09-15T17:34:52.710 に答える