Package net.ontopia.persistence.proxy
Interface QueryIF
- All Known Implementing Classes:
RDBMSQuery
public interface QueryIF
INTERNAL: Interface for representing queries.
-
Method Summary
Modifier and TypeMethodDescriptionINTERNAL: Executes the query without any parameters.executeQuery(Object[] params) INTERNAL: Executes the query with the given parameters.executeQuery(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
-