This topic has not yet been rated - Rate this topic

SqlCeTransaction Class

Represents an SQL transaction to be made at a data source. This class cannot be inherited.

System.Object
  System.MarshalByRefObject
    System.Data.Common.DbTransaction
      System.Data.SqlServerCe.SqlCeTransaction

Namespace:  System.Data.SqlServerCe
Assembly:  System.Data.SqlServerCe (in System.Data.SqlServerCe.dll)
public sealed class SqlCeTransaction : DbTransaction

The SqlCeTransaction type exposes the following members.

  Name Description
Public property Connection (inherited from DbTransaction)
Public property CurrentTransactionBsn Gets the begin sequence number (BSN) for the transaction.
Protected property DbConnection (inherited from DbTransaction)
Public property IsolationLevel Specifies the IsolationLevel for this transaction. (Overrides DbTransaction.IsolationLevel.)
Public property TrackingContext Gets or sets application-specific context information that is associated by the transaction with tracked operations on a SQL Server Compact database table.
Top
  Name Description
Public method Commit() Commits the database transaction. (Overrides DbTransaction.Commit().)
Public method Commit(CommitMode) Commits the database transaction using the specified CommitMode.
Public method CreateObjRef (inherited from MarshalByRefObject)
Public method Dispose() Releases all SqlCeConnection objects associated with the transaction.
Protected method Dispose(Boolean) (inherited from DbTransaction)
Public method Equals (inherited from Object)
Protected method Finalize (inherited from Object)
Public method GetHashCode (inherited from Object)
Public method GetLifetimeService (inherited from MarshalByRefObject)
Public method GetType (inherited from Object)
Public method InitializeLifetimeService (inherited from MarshalByRefObject)
Protected method MemberwiseClone() (inherited from Object)
Protected method MemberwiseClone(Boolean) (inherited from MarshalByRefObject)
Public method Rollback Rolls back a transaction from a pending state. (Overrides DbTransaction.Rollback().)
Public method ToString (inherited from Object)
Top
  Name Description
Explicit interface implemetation Private property IDbTransaction.Connection (inherited from DbTransaction)
Top

You create a SqlCeTransaction object in your application by calling BeginTransaction on the SqlCeConnection object. All subsequent operations associated with the transaction (for example, committing or canceling the transaction), are performed on the SqlCeTransaction object.

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)