1

次のようなデータベースがあります。

@Database(name = QuestionDatabase.NAME, version = QuestionDatabase.VERSION)
public class QuestionDatabase {

    public static final String NAME = "QuestionDatabase"; // we will add the .db extension

    public static final int VERSION = 1;
}

そして、このようなテーブル:

@Table(database = QuestionDatabase.class)
public class Question extends BaseModel {
    @PrimaryKey
    public int localID;
    @Column
    public int Id;
    @Column
    public String Answer;
    @Column
    public String ImageURL;
    @Column
    public boolean IsFavorite;
    @Column
    public boolean IsSolved;
}

サーバーからデータを取得する asynctask:

public class QuestionRetriever extends AsyncTask<Integer, Void, Integer> {

    private Activity callerActivity;
    private QuestionAdapter questionsAdapter;
    private List<Question> callerQuestions;

    private Integer pageSize = 10;

    public QuestionRetriever(Activity callerActivity, QuestionAdapter questionsAdapter, List<Question> questions){
        this.callerActivity = callerActivity;
        this.questionsAdapter = questionsAdapter;
        this.callerQuestions = questions;
    }

    @Override
    protected Integer doInBackground(Integer... pageNumbers) {
        Retrofit retrofit = new Retrofit.Builder()
                .baseUrl("http://192.168.1.33:313/")
                .addConverterFactory(GsonConverterFactory.create())
                .build();

        QuestionWebService service = retrofit.create(QuestionWebService.class);

        Call<List<Question>> call = service.getQuestionsPaged(pageNumbers[0].toString(), pageSize.toString());

        try {
            Response<List<Question>> excecuted = call.execute();
            List<Question> questions = excecuted.body();
            FastStoreModelTransaction
                    .insertBuilder(FlowManager.getModelAdapter(Question.class))
                    .addAll(questions)
                    .build();
            callerQuestions.addAll(questions);
            callerActivity.runOnUiThread(new Runnable() {
                @Override
                public void run() {
                    questionsAdapter.notifyDataSetChanged();
                }
            });

            //Get TotalQuestionCount if not yet
            if (((StatefulApplication) callerActivity.getApplication()).getQuestionCount() == -1){
                Call<Integer> call2 = service.getQuestionsSize();
                try {
                    ((StatefulApplication) callerActivity.getApplication()).setQuestionCount(call2.execute().body());
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
        catch (Exception e){
            e.printStackTrace();
        }

        return 1;
    }

    @Override
    protected void onPreExecute() {
        super.onPreExecute();

        //TODO: show loader
    }

    @Override
    protected void onPostExecute(Integer result) {
        super.onPostExecute(result);

        //TODO: hide loader
    }
}

ご覧のとおり、すべてが問題ないように見え、実行後FastStoreModelTransactionも何も問題はありません。エラーなし。

初期化ジョブは、次のようなスプラッシュ スクリーン アクティビティで実行されます。

private void initializeEveryRun() {
        //Initializing DBFlow
        //DBFlow needs an instance of Context in order to use it for a few features such as reading from assets, content observing, and generating ContentProvider.
        //Initialize in your Application subclass. You can also initialize it from other Context but we always grab the Application Context (this is done only once).
        FlowManager.init(new FlowConfig.Builder(getApplicationContext()).build());
    }

この問題の原因や解決策について何か考えはありますか? TG。

4

2 に答える 2

1

これはトランザクションの実行ではなく、単なるトランザクションの作成です。

ご覧のとおり、このテストDBFlow - FastModelTest.kt .

FastStoreModelTransaction .insertBuilder(FlowManager.getModelAdapter(Question.class)) .addAll(questions) .build();


次のようにトランザクションを実行する必要があります。
FlowManager.getDatabase(QuestionDatabase.class).executeTransaction(<<YourTransaction>>);

それ以外の場合は、DatabaseWrapper インスタンスが既にある場合は、<<YourTransaction>>.excute(<<YourDatabaseWrapper>>);.

于 2017-01-05T18:07:49.297 に答える