|
|
|
|
|
<Connection variable>.TransactionSavepoint (Function) In french: <Variable Connexion>.TransactionPointDeSauvegarde MaConnexion is Connection
MaConnexion.TransactionStart()
MaConnexion.TransactionSavepoint("MonPointDeSauvegarde")
MaConnexion.TransactionRollbackToSavepoint("MonPointDeSauvegarde")
MaConnexion.TransactionSavepoint("MonPointDeSauvegarde2")
MaConnexion.TransactionEnd()
Syntax
<Result> = <Connection>.TransactionSavepoint(<Savepoint name>)
<Result>: Boolean - True if the savepoint has been created,
- 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 Savepoint name. Note: The save point name cannot begin with "#". Remarks - This function must be used in a transaction.
- The corresponding SQL command is also available: "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…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|