connection class : Release() method

Description

Releases the unmanaged resources.

Syntax

instance.Release()

Arguments

None.

Return value

None.

Sample code

1:

connection cnn = new connection("Data Source=c:\somedirectory\somedatabase.sqlite3;Version=3;");

2:

cnn.Open();

3:

... // Access to the database.

4:

cnn.Close();

5:

cnn.Release();

Notes

If an instance call this method, the instance back to the uninitialized state.

Links for reference

None.

Copyright © Cooker All rights reserved.