Establish the property of the system indicated by the specified key.

1 system.setProperty

<system.setProperty
    name='name'
    value='value'
/>
Example

Replace the value which contains the system property java.version by 'ccc'.

Copy
<xsql-script name='system_server_setProperty '>
    <body>
        <println>
            <system.setProperty name='java.version' value='ccc' />
        </println>
    </body>
</xsql-script>