ADC Advanced Policy Expressions

MSSQL_REQ_RPC_T


Operates on MSSQL RPC request.

This topic lists the expressions that are provided by this class.

  • BODY

    Returns the body of the SQL request as a String in the form of parameters represented as "a=b" clauses separated by commas where "a" is the RPC parameter name and "b" is its value.

Returns: text_t

BODY (uint n)

Returns the body of the SQL request as a String in the form of parameters represented as "a=b" clauses separated by commas where "a" is the RPC parameter name and "b" is its value. The parameters lookup is done in first n-bytes of the request, skipping the sql-header. It returns only complete pairs.

Parameters``:

            n- (RPC body len)

Returns: text_t

  • IS_PROCID

    Does the RPC request contain ProcID? If it returns false it indicates the RPC contains a RPC Name.

Returns: bool_at

  • NAME

    String for the name of the procedure. Sets the text mode to case insensitive.

Returns: text_t

  • PROCID

    Integer representing the ProcID of the RPC request.

Returns: num_at

MSSQL_REQ_RPC_T

In this article