SqlConnection::ChangeDatabase Method
Changes the current database for an open SqlConnection.
Assembly: System.Data (in System.Data.dll)
Parameters
- database
- Type: System::String
The name of the database to use instead of the current database.
Implements
IDbConnection::ChangeDatabase(String)Exception | Condition |
---|---|
ArgumentException | The database name is not valid. |
InvalidOperationException | The connection is not open. |
SqlException | Cannot change the database. |
The value supplied in the database parameter must be a valid database name. The database parameter cannot contain a null value, an empty string, or a string with only blank characters.
When you are using connection pooling against SQL Server 2000, and you close the connection, it is returned to the connection pool. The next time the connection is retrieved from the pool used, the reset connection request piggybacks on the first round trip to the server and executes before the user performs any operations. From the time that you return a connection to the connection pool after calling the ChangeDatabase method, until the time the connection is retrieved, the connection remains active on the database. This prevents you from dropping the database because the connection is still active.
The following example creates a SqlConnection and displays some of its read-only properties.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.