Note: This namespace, class, or member is supported only in version 1.1 of the .NET Framework.
Releases the resources used by the OdbcConnection.
Overload List
Releases the unmanaged and, optionally, the managed resources used by the OdbcConnection.
[Visual Basic] Overloads Overrides Protected Sub Dispose(Boolean)
[C#] protected override void Dispose(bool);
[C++] protected: void Dispose(bool);
[JScript] protected override function Dispose(Boolean);
Inherited from Component.
[Visual Basic] Overloads Public Overridable Sub Dispose() Implements IDisposable.Dispose
[C#] public virtual void Dispose();
[C++] public: virtual void Dispose();
[JScript] public function Dispose();
Example
[Visual Basic, C#, C++] The following example creates an OdbcConnection and then disposes of it.
[Visual Basic, C#, C++] Note This example shows how to use one of the overloaded versions of Dispose. For other examples that might be available, see the individual overload topics.
[Visual Basic]
Public Sub OdbcConnectionHereAndGone()
Dim myConnection As New _
OdbcConnection("DRIVER={SQL Server};SERVER=MyServer;" & _
"Trusted_connection=yes;DATABASE=northwind;")
myConnection.Open()
'Calling Dispose also calls OdbcConnection.Close.
myConnection.Dispose()
End Sub
[C#]
public void OdbcConnectionHereAndGone()
{
OdbcConnection myConnection = new
OdbcConnection("DRIVER={SQL Server};SERVER=MyServer;" +
"Trusted_connection=yes;DATABASE=northwind;");
myConnection.Open();
//Calling Dispose also calls OdbcConnection.Close.
myConnection.Dispose();
}
[C++]
public:
void OdbcConnectionHereAndGone()
{
OdbcConnection* myConnection = new OdbcConnection(S"DRIVER= {SQL Server};SERVER=MyServer; Trusted_connection=yes;DATABASE=northwind;");
myConnection->Open();
//Calling Dispose also calls OdbcConnection::Close.
myConnection->Dispose();
};
[JScript] No example is available for JScript. To view a Visual Basic, C#, or C++ example, click the Language Filter button
in the upper-left corner of the page.
See Also
OdbcConnection Class | OdbcConnection Members | System.Data.Odbc Namespace