public ExecutionResults execute(HConnectionImpl connection) throws HBqlException {
final ExecutionResults retval = new ExecutionResults("Parsed successfully");
if (this.getGenericValue() != null) {
final SimpleExpressionContext expr = new SimpleExpressionContext(this.getGenericValue());
expr.validate();
final Object val = expr.getValue(connection);
retval.out.println(this.getGenericValue().asString() + " = " + val);
}
return retval;
}