Windows apps
Collapse the table of content
Expand the table of content
Information
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.

OleDbConnection::ChangeDatabase Method (String^)

 

Changes the current database for an open OleDbConnection.

Namespace:   System.Data.OleDb
Assembly:  System.Data (in System.Data.dll)

public:
virtual void ChangeDatabase(
	String^ value
) override

Parameters

value
Type: System::String^

The database name.

Exception Condition
ArgumentException

The database name is not valid.

InvalidOperationException

The connection is not open.

OleDbException

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.

The following example creates an OleDbConnection and displays some of its read-only properties.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft