0
一直試圖使用JDO, 我明白,它不是任何人supported..does有一個想法來進行這個查詢對檢索與最大值,並在谷歌的AppEngine分鐘值的記錄在數據存儲實體......下面是我的代碼max和谷歌應用程序引擎min函數使用JDO
PersistenceManager pm = PMF.get().getPersistenceManager();
Query q=pm.newQuery(userentity.class);
q.setFilter("Cusunique == CusUniqueId");
q.declareParameters("String CusUniqueId");
//JDO does not allow this below line of code
q.setResult("max(this.fieldname)");
我覺得最好寫一下:'Query q = pm.newQuery(UserEntity.class); '而不是將它嵌入到一個字符串中。如果您更改班級的包名稱會怎麼樣? – 2014-06-24 03:36:32