OracleConnection.ChangeDatabase Method
Assembly: System.Data.OracleClient (in system.data.oracleclient.dll)
'Declaration Public Overrides Sub ChangeDatabase ( _ value As String _ ) 'Usage Dim instance As OracleConnection Dim value As String instance.ChangeDatabase(value)
public void ChangeDatabase ( String value )
public override function ChangeDatabase ( value : String )
Parameters
- value
The name of the database to use instead of the current 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. |
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Note