OracleConnection::ChangeDatabase Method (String^)
Changes the current database for an open OracleConnection.
Assembly: System.Data.OracleClient (in System.Data.OracleClient.dll)
Parameters
- value
-
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. |
| OracleException | 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.
Note |
|---|
Unlike the Connection object in the other .NET Framework data providers (SQL Server, OLE DB, and ODBC), OracleConnection does not support a ConnectionTimeout property. Setting a connection time-out either as a property or in the connection string has no effect, and the value returned is always zero. OracleConnection also does not support a Database property or a ChangeDatabase method. |
Available since 2.0
