Returns the bytes of a datahandler.

1 datahandler.getBytes

<datahandler.getBytes>
    <value /> !
</datahandler.getBytes>
Example

Returns the obtained bytes from a file, who is the same xsql-script which has been executed.

Copy
<xsql-script>
    <body>
        <set name='m_datahandler'>
            <object.2dataHandler><file name='z:\test.xml' type='absolute' /></object.2dataHandler>
        </set>
    
        <println>
            <datahandler.getBytes>
                <m_datahandler/>
            </datahandler.getBytes>
        </println>
    </body>
</xsql-script>