TransactionHandler
        TransactionHandler.php
                :
        15
                
    
            Interface
                The Persistence Transaction handler for Storage Engine.
Methods¶
                
beginTransaction()
            ¶
    
        
        TransactionHandler.php
                :
        23
                
    
        Begin transaction.
| 
                     | 
                
                    
                     | 
            
Begins an transaction, make sure you'll call commit or rollback when done, otherwise work will be lost.
                
commit()
            ¶
    
        
        TransactionHandler.php
                :
        32
                
    
        Commit transaction.
| 
                     | 
                
                    
                     | 
            
Commit transaction, or throw exceptions if no transactions has been started.
Tags
                
rollback()
            ¶
    
        
        TransactionHandler.php
                :
        41
                
    
        Rollback transaction.
| 
                     | 
                
                    
                     | 
            
Rollback transaction, or throw exceptions if no transactions has been started.