Interface DetachedQueryIF
- All Known Implementing Classes:
RDBMSCollectionQuery,RDBMSMapQuery,RDBMSMatrixQuery,RDBMSObjectQuery
public interface DetachedQueryIF
INTERNAL: Interface for representing shared queries.
-
Method Summary
Modifier and TypeMethodDescriptionexecuteQuery(Connection conn) INTERNAL: Executes the query without any parameters.executeQuery(Connection conn, Object[] params) INTERNAL: Executes the query with the given parameters.executeQuery(Connection conn, Map params) INTERNAL: Executes the query with the given named parameters.
-
Method Details
-
executeQuery
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
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
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
-