It is a block tag. At the end of the block, the system releases all the used database ressources.

1 connection.markStatementCache

<connection.markStatementCache />
Example

Liberate ressources to enable triggers previously disabled after interacting on the corresponding table.

Copy
<xsql-script name='sample_markStatementCache'>
    <body>
            
        <connection.begin />   
        <table.trigger table='ctercero' mode='disable' />        
        <connection.markStatementCache>

        <update table='ctercero'>
           <columns name='refter'>X</columns>
           <where>
              ctercero.codigo = "0"
           </where>
        </update>

        </connection.markStatementCache>        
        <table.trigger table='ctercero' mode='enable' />        
        <connection.commit/>
        
    </body>
</xsql-script>