Chili.Opf3 Send comments on this topic.
CreateSavePoint Method
See Also 
Chili.Opf3.Storages.MsSql Namespace > MsSqlTransaction Class : CreateSavePoint Method




name
The name of the save point to create.
Creates a save point in the transaction that can be used to roll back a part of the transaction, and specifies the save point name.

Syntax

Visual Basic (Declaration) 
Public Function CreateSavePoint( _
   ByVal name As String _
) As MsSqlSavePoint
Visual Basic (Usage)Copy Code
Dim instance As MsSqlTransaction
Dim name As String
Dim value As MsSqlSavePoint
 
value = instance.CreateSavePoint(name)
C# 
public MsSqlSavePoint CreateSavePoint( 
   string name
)
Managed Extensions for C++ 
public: MsSqlSavePoint* CreateSavePoint( 
   string* name
) 
C++/CLI 
public:
MsSqlSavePoint^ CreateSavePoint( 
   String^ name
) 

Parameters

name
The name of the save point to create.

Return Value

An instance of the MsSqlSavePoint class.

Requirements

Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family

See Also