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
 java.lang.Object executeQuery(java.sql.Connection conn)
          INTERNAL: Executes the query without any parameters.
 java.lang.Object executeQuery(java.sql.Connection conn, java.util.Map params)
          INTERNAL: Executes the query with the given named parameters.
 java.lang.Object executeQuery(java.sql.Connection conn, java.lang.Object[] params)
          INTERNAL: Executes the query with the given parameters.
 

Method Detail

executeQuery

java.lang.Object executeQuery(java.sql.Connection conn)
                              throws java.lang.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:
java.lang.Exception

executeQuery

java.lang.Object executeQuery(java.sql.Connection conn,
                              java.lang.Object[] params)
                              throws java.lang.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:
java.lang.Exception

executeQuery

java.lang.Object executeQuery(java.sql.Connection conn,
                              java.util.Map params)
                              throws java.lang.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:
java.lang.Exception


Copyright © 2000-2012 Ontopia.