私は一般的に Android 開発にかなり慣れていないため、greenDAO を使用したことさえありません。しかし、ジェネレーター クラス (エンティティをモデル化する場所) の作業に多くの時間を費やした後、最終的に GitHub で提供されている例に似たものを作成することができました。
import de.greenrobot.daogenerator.DaoGenerator;
import de.greenrobot.daogenerator.Entity;
import de.greenrobot.daogenerator.Property;
import de.greenrobot.daogenerator.Schema;
import de.greenrobot.daogenerator.ToMany;
public class simbalDAOgen {
public static void main(String[] args) throws Exception {
Schema schema = new Schema(1, "com.bkp.simbal"); //Schema(Int version, String package name)
addCBTrans(schema); //Add the entities to the schema
new DaoGenerator().generateAll(schema, "../Simbal/src-gen", "../Simbal/src-test"); //Generate DAO files
}
private static void addCBTrans(Schema schema){
Entity checkbook = schema.addEntity("Checkbook");
checkbook.addIdProperty();
checkbook.addStringProperty("name").notNull();
checkbook.addDateProperty("dateModified");
checkbook.addStringProperty("balance"); // Use a string property because BigDecimal type should be used for currency
Entity transaction = schema.addEntity("Transaction");
transaction.setTableName("TRANS"); // "TRANSACTION" is a reserved SQLite keyword
transaction.addIdProperty();
transaction.addStringProperty("name");
transaction.addStringProperty("category");
Property transDate = transaction.addDateProperty("date").getProperty();
transaction.addStringProperty("amount"); // Again use string for BigDecimal type
transaction.addStringProperty("notes");
Property cbName = transaction.addStringProperty("cb").notNull().getProperty(); //What checkbook the transaction is in
ToMany cbToTrans = checkbook.addToMany(transaction, cbName); //Actually ties the transactions to their correct checkbooks
cbToTrans.setName("Transactions");
cbToTrans.orderAsc(transDate);
}
}
次に、greenDAO のドキュメントに記載されているように、コードを Java アプリケーションとして実行して DAO ファイルを生成しました。ファイルは正常に生成されましたが、Eclipse のコンソールに次の行が表示されました。
Warning to-one property type does not match target key type: ToMany 'Transactions' from Checkbook to Transaction
ファイルが生成されたので、心配する必要があるかどうかは本当にわかりません。しかし、私が理解していないのは、私のコードに見られるように、「対多」関係を使用しているときに「対一」関係について言及されている理由です。(小切手帳エンティティには多くのトランザクション エンティティが存在する可能性があり、各小切手帳エンティティの名前を使用してトランザクションを関連付けるつもりです。)
戻ってコードの一部を修正する必要がありますか? 何か明確にする必要があるかどうか尋ねてください。お時間をいただきありがとうございます。