|
|
|
|
|
HTransactionSavepoint (Function) In french: HTransactionPointDeSauvegarde MaConnexion is Connection
HTransactionStart(MaConnexion)
HTransactionSavepoint(MaConnexion, "MonPointDeSauvegarde")
HTransactionRollbackToSavepoint(MaConnexion, "MonPointDeSauvegarde")
HTransactionSavepoint(MaConnexion, "MonPointDeSauvegarde2")
HTransactionEnd(MaConnexion)
Syntax
<Result> = HTransactionSavepoint([<Connection>, ] <Savepoint name>)
<Result>: Boolean - True if the savepoint has been created,
- False if a problem occurs. HErrorInfo returns more details about the error.
<Connection>: Character string or Connection variable Connection to an HFSQL server. This connection corresponds to: If this parameter is not specified, the current connection is used. <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…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|