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::ResetState Method ()

 

Updates the State property of the OleDbConnection object.

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

public:
void ResetState()

Some OLE DB providers can check the current state of the connection. For example, if the database server has recycled since you opened your OleDbConnection, the State property will continue to return Open. If you are working with an OLE DB Provider that supports polling for this information on a live connection, calling the ResetState method and then checking the State property will tell you that the connection is no longer open. The ResetState method relies on functionality in the OLE DB Provider to verify the current state of the connection. To determine if your OLE DB Provider supports this functionality, check the provider's documentation for information on DBPROP_CONNECTIONSTATUS.

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