Interface DetachedQueryIF

    • Method Detail

      • executeQuery

        Object executeQuery​(Connection conn)
                     throws Exception
        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.
        Throws:
        Exception
      • executeQuery

        Object executeQuery​(Connection conn,
                            Object[] params)
                     throws Exception
        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.
        Throws:
        Exception
      • executeQuery

        Object executeQuery​(Connection conn,
                            Map params)
                     throws Exception
        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.
        Throws:
        Exception