Class RDBMSQuery
- java.lang.Object
-
- net.ontopia.persistence.query.sql.RDBMSQuery
-
-
Field Summary
Fields Modifier and Type Field Description protected RDBMSAccess
access
protected DetachedQueryIF
query
-
Constructor Summary
Constructors Constructor Description RDBMSQuery(RDBMSAccess access, DetachedQueryIF query)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
executeQuery()
INTERNAL: Executes the query without any parameters.Object
executeQuery(Object[] params)
INTERNAL: Executes the query with the given parameters.Object
executeQuery(Map params)
INTERNAL: Executes the query with the given named parameters.
-
-
-
Field Detail
-
access
protected final RDBMSAccess access
-
query
protected DetachedQueryIF query
-
-
Constructor Detail
-
RDBMSQuery
public RDBMSQuery(RDBMSAccess access, DetachedQueryIF query)
-
-
Method Detail
-
executeQuery
public Object executeQuery() throws Exception
Description copied from interface:QueryIF
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.- Specified by:
executeQuery
in interfaceQueryIF
- Throws:
Exception
-
executeQuery
public Object executeQuery(Object[] params) throws Exception
Description copied from interface:QueryIF
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.- Specified by:
executeQuery
in interfaceQueryIF
- Throws:
Exception
-
executeQuery
public Object executeQuery(Map params) throws Exception
Description copied from interface:QueryIF
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.- Specified by:
executeQuery
in interfaceQueryIF
- Throws:
Exception
-
-