transaction class : Commit() method
Description
Commits all data changes made since the start of the transaction.
Syntax
instance.Commit()
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
None.
Links for reference
None.