Returns a text string with the result in base 16 of the calculation of the CRC32 of an object.

1 math.crc32toHexString

<math.crc32toHexString>
    <var | expr /> !
</math.crc32toHexString>
Example
Copy
<xsql-script name='crc32toHexString_sample1'>
    <body>
        <println>
            <math.crc32toHexString>
                <string>Test for the generation of crc32</string>
            </math.crc32toHexString>
        </println>
    </body>
</xsql-script>

d803cb7

Example
Copy
<xsql-script name='crc32toHexString_sample2'>
   <body>
       <println>
           <math.crc32toHexString>
               <file name='c:\tmp\edit1' type='absolute'/>
           </math.crc32toHexString>
       </println>
   </body>
</xsql-script>
Example
Copy
<xsql-script name='crc32toHexString_sample3'>
   <body>
       <println>
           <math.crc32toHexString>
               <select>
                   <columns>
                       MAX(text_data)
                   </columns>
                   <from table='cdoctext' />
               </select>
           </math.crc32toHexString>
       </println>
   </body>
</xsql-script>