Class SQLPreparedQueryFn

  • All Implemented Interfaces:
    Callable, Function, GroundedValue, Item, Sequence

    public class SQLPreparedQueryFn
    extends SystemFunction
    This class implements the sql:prepared-query() extension function. Arguments:
    1. The connection
    2. A SQL select statement, typically containing "?" placeholders

    The result is a function, with arity equal to the number of placeholders. When calling this function, the supplied arguments substitute for the placeholders in the query, and the result is a sequence of maps containing the rows selected by the query.

    • Constructor Detail

      • SQLPreparedQueryFn

        public SQLPreparedQueryFn()
    • Method Detail

      • call

        public Function call​(XPathContext context,
                             Sequence[] arguments)
                      throws XPathException
        Description copied from interface: Function
        Invoke the function
        Parameters:
        context - the XPath dynamic evaluation context
        arguments - the actual arguments to be supplied
        Returns:
        the result of invoking the function
        Throws:
        XPathException - if a dynamic error occurs within the function
      • makePreparedQueryFunction

        public static Expression makePreparedQueryFunction​(java.lang.String tableName,
                                                           Expression predicate)
      • makeWhereClause

        public static boolean makeWhereClause​(Expression predicate,
                                              java.lang.StringBuilder sb,
                                              java.util.List<Expression> params)