transaction class : Release() method

Description

Releases 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:

transaction tran = cnn.BeginTransaction();

4:

... // Access to the database.

5:

tran.Commit(); // It confirms the change.

6:

tran.Release();

7:

cnn.Close();

Notes

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

Links for reference

None.

Copyright © Cooker All rights reserved.