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