The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
OdbcConnection::ChangeDatabase Method (String^)
.NET Framework (current version)
Changes the current database associated with an open OdbcConnection.
Assembly: System.Data (in System.Data.dll)
Parameters
- value
-
Type:
System::String^
The database name.
Implements
IDbConnection::ChangeDatabase(String^)| Exception | Condition |
|---|---|
| ArgumentException | The database name is not valid. |
| InvalidOperationException | The connection is not open. |
| OdbcException | Cannot change the database. |
The value parameter must contain a valid database name, and cannot contain a null value, an empty string (""), or a string with only blank characters.
The following example creates an OdbcConnection and changes the current database.
.NET Framework
Available since 1.1
Available since 1.1
Show: