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
}
私が解決できないのは(サポートされていると仮定して)、ORMLiteの3つのクラスに注釈を付ける方法です。
具体的なクラスに注釈を付ける必要があるだけ@DatabaseTable(tableName = "Student")
ですか、それとも抽象クラスも必要ですか?
次のようなエラーが発生し続けます。
04-24 10:18:30.857:E / AndroidRuntime(30495):原因:java.lang.RuntimeException:java.sql.SQLException:Androidsqliteカーソルからの不明なフィールド'name'、in:[year、school]