我正在嘗試使用ORMLite的繼承,如果它支持或不從查看文檔和搜索,我無法解決。如何正確註釋使用ORMLite的繼承類?
我想要做的是有
public abstract class Person{
public int id;
public String name;
}
public class Student extends Person{
public String school;
public String year;
// other student stuff
}
public class Teacher extends Person{
public String title;
// other teacher stuff
}
我不能工作了(假設它的支持)是如何註釋3類ORMLite。
我只需要用@DatabaseTable(tableName = "Student")
註解具體類還是我還需要抽象類?
我不斷收到這樣的錯誤:
10月4日至24日:18:30.857:E/AndroidRuntime(30495):了java.lang.RuntimeException:致值java.sql.SQLException:未知的領域「名稱」從Android sqlite的光標,而不是在:今年,學校]
謝謝,這也回答了我的問題,ORMLite是否適用於這種情況。 – srowley 2012-05-11 21:21:59