C# 클래스 Mono.Data.Sqlite.SqliteTransaction

Sqlite implementation of DbTransaction.
상속: System.Data.Common.DbTransaction
파일 보기 프로젝트 열기: rubenv/tripod 1 사용 예제들

공개 메소드들

메소드 설명
Commit ( ) : void

Commits the current transaction.

Rollback ( ) : void

Rolls back the active transaction.

보호된 메소드들

메소드 설명
Dispose ( bool disposing ) : void

Disposes the transaction. If it is currently active, any changes are rolled back.

비공개 메소드들

메소드 설명
IsValid ( bool throwError ) : bool
SqliteTransaction ( SqliteConnection connection, bool deferredLock ) : System

Constructs the transaction object, binding it to the supplied connection

메소드 상세

Commit() 공개 메소드

Commits the current transaction.
public Commit ( ) : void
리턴 void

Dispose() 보호된 메소드

Disposes the transaction. If it is currently active, any changes are rolled back.
protected Dispose ( bool disposing ) : void
disposing bool
리턴 void

Rollback() 공개 메소드

Rolls back the active transaction.
public Rollback ( ) : void
리턴 void