I have not added anything to my Database yet, thus the following query should return a result of 0 by my reckoning.
Query query = pm.newQuery(Password.class);
query.setFilter("password == :passwordParam");
query.setResult("count(password)");
query.setResultClass(Integer.class);
Integer result = (Integer)query.execute(password);
System.out.println("Result: [" + result + "]");
It returns null
Neither the javadocs, nor the result docs, say anything about this method being able to return null. My guess is that I did something wrong.
http://db.apache.org/jdo/api20/apidocs/javax/jdo/Query.html#execute%28%29 http://www.datanucleus.org/products/accessplatform_2_2/jdo/jdoql_result.html