Class RDBMSQuery

  • All Implemented Interfaces:
    QueryIF

    public class RDBMSQuery
    extends Object
    implements QueryIF
    INTERNAL:
    • Method Detail

      • executeQuery

        public Object executeQuery()
                            throws Exception
        Description copied from interface: QueryIF
        INTERNAL: Executes the query without any parameters. The query result is returned. The actual type of the query result is specific to the query implementation.
        Specified by:
        executeQuery in interface QueryIF
        Throws:
        Exception
      • executeQuery

        public Object executeQuery​(Object[] params)
                            throws Exception
        Description copied from interface: QueryIF
        INTERNAL: Executes the query with the given parameters. The query result is returned. The actual type of the query result is specific to the query implementation.
        Specified by:
        executeQuery in interface QueryIF
        Throws:
        Exception
      • executeQuery

        public Object executeQuery​(Map params)
                            throws Exception
        Description copied from interface: QueryIF
        INTERNAL: Executes the query with the given named parameters. The query result is returned. The actual type of the query result is specific to the query implementation.
        Specified by:
        executeQuery in interface QueryIF
        Throws:
        Exception