SqliteCommittable Class

The implementation with Sqlite.

C#
public sealed class SqliteCommittable : Committable
Inheritance
SqliteCommittable
Implements

Constructors

SqliteCommittable(SqliteTransaction)

The implementation with Sqlite.

Methods

Commit()

Description copied from interface: Committable

Applies the changes made in the transaction.

Dispose()
Rollback()

Description copied from interface: Committable

Reverts the changes made in the transaction.

Equals(object) (Inherited from object)
GetHashCode() (Inherited from object)
GetType() (Inherited from object)
MemberwiseClone() (Inherited from object)
ToString() (Inherited from object)

Constructors Detail

SqliteCommittable(SqliteTransaction)

The implementation with Sqlite.

C#
public SqliteCommittable(SqliteTransaction transaction)

Parameters

transaction
SqliteTransaction

The Sqlite's transaction.

Methods Detail

Commit()

Description copied from interface: Committable

Applies the changes made in the transaction.

C#
public void Commit()

Implements

Dispose()

C#
public void Dispose()

Implements

Rollback()

Description copied from interface: Committable

Reverts the changes made in the transaction.

C#
public void Rollback()

Implements