Returns the bytes of a datahandler.
1 datahandler.getBytes
<datahandler.getBytes>
<value /> !
</datahandler.getBytes>
Arguments | |||||
---|---|---|---|---|---|
Name | Type | Required | Unique | Nullable | Description |
Evalue | Object | Object datahandler type. |
Returns | |
---|---|
Type | Description |
String | Returns the bytes of the datahandler. |
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>