net.ontopia.persistence.query.sql
Interface DetachedQueryIF

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

public interface DetachedQueryIF

INTERNAL: Interface for representing shared queries.


Method Summary
 Object executeQuery(Connection conn)
          INTERNAL: Executes the query without any parameters.
 Object executeQuery(Connection conn, Map params)
          INTERNAL: Executes the query with the given named parameters.
 Object executeQuery(Connection conn, Object[] params)
          INTERNAL: Executes the query with the given parameters.
 

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


Copyright © 2000-2012 Ontopia.