* @throws org.objectweb.medor.api.MedorException
*/
public Object execute(Object[] a, POManagerItf pm, QueryDefinition userqd)
throws SpeedoException, MedorException, ExpressionException {
if (status != COMPILED)
throw new EvaluationException(
"Impossible to execute a query if it has not been defined and compiled before");
ParameterOperand[] pos = null;
if (a != null) {
pos = new ParameterOperand[a.length + pncParams.size()];
for(Iterator it = hparams.values().iterator(); it.hasNext();) {