|
|
|
|
|
<Connection variable>.TransactionRollbackToSavepoint (Function) In french: <Variable Connexion>.TransactionRetourneAuPointDeSauvegarde Rolls the transaction back to the savepoint. MaConnexion is Connection
MaConnexion.TransactionStart()
MaConnexion.TransactionSavepoint("MonPointDeSauvegarde")
MaConnexion.TransactionRollbackToSavepoint("MonPointDeSauvegarde")
MaConnexion.TransactionSavepoint("MonPointDeSauvegarde2")
MaConnexion.TransactionEnd()
Syntax
<Result> = <Connection>.TransactionRollbackToSavepoint(<Savepoint name>)
<Result>: Boolean - True if the cancellation has been carried out,
- False if a problem occurs. HErrorInfo returns more details about the error.
<Connection>: Connection variable Name of the Connection variable that describes the connection to an HFSQL server. <Savepoint name>: Character string Name of the savepoint to which the transaction is to be rolled back. If the savepoint does not exist, an error is returned. Remarks - This function must be used in a transaction.
- The corresponding SQL command is also available: "ROLLBACK TO SAVEPOINT identifier".
- This function is not available:
- on HFSQL Cluster data files,
- with files handled via a Native Connector.
Business / UI classification: Business Logic
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|