SqlCeTransaction Class
Represents an SQL transaction to be made at a data source. This class cannot be inherited.
Inheritance Hierarchy
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)
Syntax
'Declaration
Public NotInheritable Class SqlCeTransaction _
Inherits DbTransaction
'Usage
Dim instance As SqlCeTransaction
public sealed class SqlCeTransaction : DbTransaction
public ref class SqlCeTransaction sealed : public DbTransaction
[<SealedAttribute>]
type SqlCeTransaction =
class
inherit DbTransaction
end
public final class SqlCeTransaction extends DbTransaction
The SqlCeTransaction type exposes the following members.
Properties
Name | Description | |
---|---|---|
Connection | (inherited from DbTransaction) | |
CurrentTransactionBsn | Gets the begin sequence number (BSN) for the transaction. | |
DbConnection | (inherited from DbTransaction) | |
IsolationLevel | Specifies the IsolationLevel for this transaction. (Overrides DbTransaction.IsolationLevel.) | |
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
Methods
Name | Description | |
---|---|---|
Commit() | Commits the database transaction. (Overrides DbTransaction.Commit().) | |
Commit(CommitMode) | Commits the database transaction using the specified CommitMode. | |
CreateObjRef | (inherited from MarshalByRefObject) | |
Dispose() | Releases all SqlCeConnection objects associated with the transaction. | |
Dispose(Boolean) | (inherited from DbTransaction) | |
Equals | (inherited from Object) | |
Finalize | (inherited from Object) | |
GetHashCode | (inherited from Object) | |
GetLifetimeService | (inherited from MarshalByRefObject) | |
GetType | (inherited from Object) | |
InitializeLifetimeService | (inherited from MarshalByRefObject) | |
MemberwiseClone() | (inherited from Object) | |
MemberwiseClone(Boolean) | (inherited from MarshalByRefObject) | |
Rollback | Rolls back a transaction from a pending state. (Overrides DbTransaction.Rollback().) | |
ToString | (inherited from Object) |
Top
Explicit Interface Implementations
Name | Description | |
---|---|---|
IDbTransaction.Connection | (inherited from DbTransaction) |
Top
Remarks
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.
Thread Safety
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.