ObjectDB ObjectDB

executeWithMap(parameters) - JDO Query's method

Method
javax.jdo.Query
Object executeWithMap(
  Map parameters
)

Execute the query and return the filtered Collection. The query is executed with the parameters set by the Map values. Each Map entry consists of a key which is the name of the parameter in the declareParameters method, and a value which is the value used in the execute method. The keys in the Map and the declared parameters must exactly match or a JDOUserException is thrown.
Parameters:
parameters - the Map containing all of the parameters.
Returns:
the filtered Collection.
Since:
JDO 1.0
See Also:
executeWithArray(Object[] parameters)