Returns the size in bytes of the JDBCBlob object.
1 blob.length
<blob.length>
<dbmblob /> +
</blob.length>
Arguments | |||||
---|---|---|---|---|---|
Name | Type | Required | Unique | Nullable | Description |
Edbmblob | JDBCBlob | Existing JDBCBlob object whose size you want to know. |
Returns | |
---|---|
Type | Description |
Integer | Size in bytes of the DBMemoryBlob object. |
Example
Copy
<xsql-script> <body> <println>SELECT the blob data</println> <set name='blob_length'> <blob.length> <select prefix='m_'> <columns>file_data</columns> <from table='apps_excel_data_load_head' /> <where> file_id='23' </where> </select> </blob.length> </set> <println>Bob length: <blob_length /></println> </body> </xsql-script>