How to do a single row query with Android Room

后端 未结 1 1600
我寻月下人不归
我寻月下人不归 2021-02-07 10:57

How do I make a single row query with Android Room with RxJava? I am able to query for List of items, no issues. Here, I want to find if a specific row exists. According to the

相关标签:
1条回答
  • 2021-02-07 11:15

    According to the docs, looks like I can return Single and check for EmptyResultSetException exception if no row exists.

    Or, just return User, if you are handling your background threading by some other means.

    @Query("SELECT * FROM Users WHERE userId = :id")
    User findByUserId(String id);
    

    How do I use this call?

    usersDao.findByUserId("xxx")
      .subscribeOn(Schedulers.io())
      .observeOn(AndroidSchedulers.mainThread())
      .subscribe(user -> { ... }, error -> { ... });
    

    Here, I show subscribe() taking two lambda expressions, for the User and the error. You could use two Consumer objects instead. I also assume that you have rxandroid as a dependency, for AndroidSchedulers.mainThread(), and that you want the User delivered to you on that thread.

    IOW, you use this the same way as you use any other Single from RxJava. The details will vary based on your needs.

    0 讨论(0)
提交回复
热议问题