OdbcConnection.ChangeDatabase Method
.NET Framework 3.5
Changes the current database associated with an open OdbcConnection.
Assembly: System.Data (in System.Data.dll)
| Exception | Condition |
|---|---|
| ArgumentException | The database name is not valid. |
| InvalidOperationException | The connection is not open. |
| OdbcException | Cannot change the database. |
The following example creates an OdbcConnection and changes the current database.
private static void CreateOdbcConnection() { string connectionString = "Driver={SQL Native Client};Server=(local);Trusted_Connection=Yes;Database=AdventureWorks;"; using (OdbcConnection connection = new OdbcConnection(connectionString)) { connection.Open(); Console.WriteLine("ServerVersion: " + connection.ServerVersion + "\nDatabase: " + connection.Database); connection.ChangeDatabase("master"); Console.WriteLine("ServerVersion: " + connection.ServerVersion + "\nDatabase: " + connection.Database); Console.ReadLine(); } }
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.