SqlCeConnection::Close Method
Visual Studio 2010
Closes the connection to the data source. This is the preferred method of closing any open connection.
Namespace: System.Data.SqlServerCe
Assembly: System.Data.SqlServerCe (in System.Data.SqlServerCe.dll)
The Close method rolls back any pending transactions and then releases the connection. If Close is called while handling a StateChange event, no additional StateChange events are fired.
An application can call Close more than one time. No exception is generated.
The following example creates a SqlCeConnection, opens it, executes a query, and then closes the connection.
Show: