Package net.ontopia.persistence.proxy
Interface QueryIF
-
- All Known Implementing Classes:
RDBMSQuery
public interface QueryIFINTERNAL: Interface for representing queries.
-
-
Method Summary
All Methods Instance Methods Abstract 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.
-
-
-
Method Detail
-
executeQuery
Object executeQuery() 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(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
-
-