0
我使用db4o的使用對象:比較我db4o中的一個對象與其他新對象
public Tra(String x, int y, int z, int pos, Date de, Date de2)
我收到一個新的對象(電車),我想比較只有三個參數(串x,INT Y, int z)。
因爲其他參數還沒有值。
我使用:
Tra proto = new Tra(trat.getx(),trat.gety(),trat.getz(),0,null,null);
ObjectSet result=db4oHelper.db().queryByExample(proto);
if(result.equals(tram)){
Log.d(TAG,"already exists");
}
但沒有工作:(
有誰幫我