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