Returns the value of the parameter of the indicated requests.

1 http.request.getParameter

<http.request.getParameter
    name='name'
    type='string|integer|decimal|date|timestamp'
    null-if-empty='true|false'
/>

Exceptions

script is not in http request mode

It is called from command line because the request HTTP servlet does not exist.

Example

Obtain the value of a request parameter HTTP servlet.

Copy
<xsql-script name='http_connection_parameter'>
    <body>
        <println>
            <http.request.getParameter name='cond' />
        </println>
    </body>
</xsql-script>