Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Classe « connection »

Méthode mariadb.connection.tpc_begin

Signature de la méthode tpc_begin

def tpc_begin(xid) 

Description

tpc_begin.__doc__

Parameter:
xid: xid object which was created by .xid()

Begins a TPC transaction with the given transaction ID xid.

This method should be called outside of a transaction
(i.e. nothing may have executed since the last .commit()
or .rollback()).

Furthermore, it is an error to call .commit() or .rollback() within
the TPC transaction. A ProgrammingError is raised, if the application
calls .commit() or .rollback() during an active TPC transaction.