3

私はいくつかのPOJOSを持っており、それらのためにいくつかのテーブルを作成しています。それらはすべてうまく機能します。つまり、それらを挿入してロードできます...これを除いて:

私のブランドリストには6つの要素が含まれており、それらが異なっていると確信しています(ブレークポイントを置いて見ました)が、DBに挿入しようとするとgreenDao最後の要素だけが挿入されます。私のテーブルは空で、このステートメントはそれを埋めることを想定しています。

コード:

public class SingletonDatabase {

    private static SingletonDatabase mInstance;
    private DaoMaster.OpenHelper mHelper;
    private DaoSession mDaoSessionForUI;
    private DaoMaster mDaoMaster;
    private static Context mCtx;

    private SingletonDatabase(Context context) {
        mCtx = context;
        setupDb();
    }

    public static synchronized SingletonDatabase getInstance(Context context) {
        if (mInstance == null) {
            mInstance = new SingletonDatabase(context);
        }
        return mInstance;
    }

    private void setupDb() {
        mHelper = new DaoMaster.OpenHelper(
                mCtx.getApplicationContext(), "mydb", null) {

            @Override
            public void onUpgrade(SQLiteDatabase db, int oldVersion,
                    int newVersion) {
                // Handle upgrade
            }
        };

        SQLiteDatabase db = mHelper.getWritableDatabase();
        mDaoMaster = new DaoMaster(db);
        mDaoSessionForUI = mDaoMaster.newSession();


    }

    public DaoSession getDaoSessionForUI() {
        return mDaoSessionForUI;

    }

    public DaoSession getDaoSeesion(){

        return mDaoMaster.newSession();
    }

}

生成されたブランド コード:

 * Entity mapped to table BRAND.
 */
public class Brand {

    private long tableId;
    private String id;
    private String name;
    private String publicImage;
    private String description;
    private String lastDownloadedTime;

    public Brand() {
    }

    public Brand(long tableId) {
        this.tableId = tableId;
    }

    public Brand(long tableId, String id, String name, String publicImage, String description, String lastDownloadedTime) {
        this.tableId = tableId;
        this.id = id;
        this.name = name;
        this.publicImage = publicImage;
        this.description = description;
        this.lastDownloadedTime = lastDownloadedTime;
    }

    public long getTableId() {
        return tableId;
    }

    public void setTableId(long tableId) {
        this.tableId = tableId;
    }

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getPublicImage() {
        return publicImage;
    }

    public void setPublicImage(String publicImage) {
        this.publicImage = publicImage;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public String getLastDownloadedTime() {
        return lastDownloadedTime;
    }

    public void setLastDownloadedTime(String lastDownloadedTime) {
        this.lastDownloadedTime = lastDownloadedTime;
    }

}

スキーマを作成するためのコード:

public class DaoGen {

    public static void main(String[] args) throws Exception {

        Schema schema = new Schema(1, "com.mmlooloo");

        Entity brandList = addBrand(schema);



        File f = new File("src-gen");
        f.mkdir();

        new DaoGenerator().generateAll(schema,f.getAbsolutePath());
    }

    private static Entity addBrand(Schema schema) {

        Entity brand = schema.addEntity("Brand");
        brand.addLongProperty("tableId").notNull().primaryKey().autoincrement();
        brand.addStringProperty("id");
        brand.addStringProperty("name");
        brand.addStringProperty("publicImage");
        brand.addStringProperty("description");
        brand.addStringProperty("lastDownloadedTime");
        return brand; 

    }

}

そして最後に、それらを挿入する方法:

public class BrandDownloadService extends IntentService {
public BrandDownloadService() {
    super("BrandDownloadService");

}
@Override
protected void onHandleIntent(Intent intent) {
    ....
    BrandDao brandDao = SingletonDatabase.getInstance(this).getDaoSeesion().getBrandDao();
    brandDao.insertOrReplaceInTx(brandList,true);

}

ブレークポイントを設定して確認するbrandlistと、6 つの要素があります。

ヘルプ、回避策、デバッグのヒント...何が問題なのか本当にわかりません。

どうもありがとう!!

編集:

私は非常に単純な(本当に単純だと信じています:-))ファイルからjsonを読み取り、それを解析してリストし、これでdbに挿入するテストプロジェクトを作成しましたが、問題が存在します。誰かが私の間違いを教えてもらえますか? 大変感謝します :-)。

4

1 に答える 1

3

おそらく、6 つの Brand-Items が同じ tableId を共有しています。したがって、greendao はこれを 1 つの項目 (主キーによって識別される) と見なし、最初の項目を 2 番目の項目に、2 番目の項目を 3 番目の項目に、というように置き換えます...

使用した場合notNull().primaryKey().autoincrement()

私はかつて同じ問題を抱えていましたが、dao-generator プロジェクトでコード生成に使用される dao-template を変更することで「修正」しました。

notNull()おそらく、primarykey プロパティを使用していない場合にも機能します。

アップデート

私はgreendaoをもう一度見ました:

greendao-generator ファイルsrc-template/dao.ftlには、次の行があります。

protected void bindValues(SQLiteStatement stmt, ${entity.className} entity) {
    stmt.clearBindings();
<#list entity.properties as property>
<#if property.notNull || entity.protobuf>
<#if entity.protobuf>
    if(entity.has${property.propertyName?cap_first}()) {
</#if>        stmt.bind${toBindType[property.propertyType]}(${property_index + 1}, entity.get${property.propertyName?cap_first}()<#if
 property.propertyType == "Boolean"> ? 1l: 0l</#if><#if property.propertyType == "Date">.getTime()</#if>);

notNull()これは、 -property で使用している場合autoincrement、対応する変数が常に挿入ステートメントまたは更新ステートメントにバインドされることを意味します。これにより、常に主キーの値を手動で設定し、autoincrement.

CREATE TABLE mytable ( id integer primary key autoincrement, details varchar(30));
INSERT INTO mytable (id, details) VALUES (0, 'something');

この db-row: になり0 | 'something'ます。

したがって、これは greendao 内のバグです! notNullこれを解決するには、主キー列で指定しないか、ファイルを変更しますdao.ftl(行 126ff):

<#list entity.properties as property>
<#if property.notNull || entity.protobuf>
<#if entity.protobuf>
        if(entity.has${property.propertyName?cap_first}()) {
</#if>
<#if property.pkAutoincrement>
        if(entity.get${property.propertyName?cap_first}() != 0) {
</#if>        stmt.bind${toBindType[property.propertyType]}(${property_index + 1}, entity.get${property.propertyName?cap_first}()<#if
     property.propertyType == "Boolean"> ? 1l: 0l</#if><#if property.propertyType == "Date">.getTime()</#if>);
<#if entity.protobuf || property.pkAutoincrement>
    }
</#if>
<#else> <#-- nullable, non-protobuff -->
    ${property.javaType} ${property.propertyName} = entity.get${property.propertyName?cap_first}();
    if (${property.propertyName} != null) {
<#if property.pkAutoincrement>    if (${property.propertyName} != 0) {
    </#if>       stmt.bind${toBindType[property.propertyType]}(${property_index + 1}, ${property.propertyName}<#if property.propertyType == "Boolean"> ? 1l: 0l</#if><#if property.propertyType == "Date">.getTime()    </#if>);
<#if property.pkAutoincrement>        }</#if>
    }
</#if>

これにより、greendao は autoincrement -primarykey 値を update または insert ステートメントにバインドしません!= 0null

ただし、2 番目のアプローチには注意してください。テストされていないため、greendao の他の部分に副作用が生じる可能性があります。

于 2014-11-14T22:42:58.907 に答える