Interface DetachedQueryIF

All Known Implementing Classes:
RDBMSCollectionQuery, RDBMSMapQuery, RDBMSMatrixQuery, RDBMSObjectQuery

public interface DetachedQueryIF
INTERNAL: Interface for representing shared queries.
  • Method Details

    • 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