Androidルーム-自動生成で新しく挿入された行のIDを取得します


138

これは、Room Persistence Libraryを使用してデータベースにデータを挿入する方法です。

エンティティ:

@Entity
class User {
    @PrimaryKey(autoGenerate = true)
    public int id;
    //...
}

データアクセスオブジェクト:

@Dao
public interface UserDao{
    @Insert(onConflict = IGNORE)
    void insertUser(User user);
    //...
}

上記のメソッド自体で挿入が完了したら、個別の選択クエリを記述せずにUserのIDを返すことはできますか?


1
操作の結果として、intまたはlong代わりに使用してみましたか?void@Insert
MatPag 2017年

未だに。撃ちます!
SpiralDev 2017年

ドキュメンテーションで参照を見つけたので、私も回答を追加しました。それがうまくいくと確信しています;)
MatPag

3
これはaSyncTask?で行われませんか?リポジトリ関数から値をどのように返しますか?
Nimitz14、2018

回答:


191

ここのドキュメントに基づく(コードスニペットの下)

@Insertアノテーションが付けられたメソッドは以下を返すことができます:

  • long 単一挿入操作の場合
  • long[]またはLong[]またはList<Long>複数の挿入操作
  • void 挿入されたIDを気にしない場合

4
なぜドキュメンテーションでは、ID型にはintと書かれているのにlongを返すのですか?idが長いほど大きくなることはないと想定していますか?行IDと自動生成IDは文字通り同じものですか?
Michael Vescovo、2018

11
SQLiteで使用できる最大の主キーIDは64ビットの符号付き整数であるため、最大値は9,223,372,036,854,775,807です(これはIDであるため、正の値のみです)。Javaでは、intは32ビットの符号付き数値であり、最大の正の値は2,147,483,647であるため、すべてのIDを表すことはできません。すべてのIDを表すには、最大値が9,223,372,036,854,775,807のJava longを使用する必要があります。ドキュメントは一例にすぎませんが、APIはこれを念頭に置いて設計されました(そのため、intやdoubleではなくlongが返されます)
MatPag

2
わかりましたので、本当に長いはずです。しかし、ほとんどの場合、sqlite dbには90億行はないので、メモリ使用量が少ないため(または、間違いです)、userIdの例としてintを使用します。それは私がこれから取るものです。それがなぜ長く戻るのかについての説明をありがとう。
マイケルヴェスコヴォ2018

3
あなたは正しいですが、RoomのAPIは最悪のシナリオでも機能し、SQliteの仕様に従う必要があります。この特定のケースで長い間intを使用することは実質的に同じことであり、追加のメモリ消費は無視できます
MatPag

1
@MatPag 元のリンクには、この動作の確認は含まれていません(残念ながら、ルームのInsertアノテーションのAPIリファレンス含まれていません)。少し検索したところ、これが見つかり、回答のリンクを更新しました。これがかなり重要な情報であるため、うまくいけば、前回のものより少し良く持続します。
CodeClown42 2018

27

@Insert関数が返すことができvoidlonglong[]またはList<Long>。ぜひお試しください。

 @Insert(onConflict = OnConflictStrategy.REPLACE)
  long insert(User user);

 // Insert multiple items
 @Insert(onConflict = OnConflictStrategy.REPLACE)
  long[] insert(User... user);

5
return Single.fromCallable(() -> dbService.YourDao().insert(mObject));
ムールト

8

ステートメントが正常に実行された場合、1つのレコードの挿入の戻り値は1になります。

オブジェクトのリストを挿入したい場合は、次のようにします。

@Insert(onConflict = OnConflictStrategy.REPLACE)
public long[] addAll(List<Object> list);

そしてRx2でそれを実行します:

Observable.fromCallable(new Callable<Object>() {
        @Override
        public Object call() throws Exception {
            return yourDao.addAll(list<Object>);
        }
    }).subscribeOn(Schedulers.io()).observeOn(AndroidSchedulers.mainThread()).subscribe(new Consumer<Object>() {
        @Override
        public void accept(@NonNull Object o) throws Exception {
           // the o will be Long[].size => numbers of inserted records.

        }
    });

1
「ステートメントが正常に実行された場合、1つのレコードの挿入の戻り値は1になります」 ->このドキュメントによると:developer.android.com/training/data-storage/room/accessing-data「@Insertメソッドが受信した場合のみ1つのパラメータで、挿入されたアイテムの新しいrowIdであるlongを返すことができます。パラメータが配列またはコレクションの場合、代わりにlong []またはList <Long>返す必要があります。
CodeClown42 2018

4

次のスニペットで行IDを取得します。FutureのExecutorServiceで呼び出し可能を使用します。

 private UserDao userDao;
 private ExecutorService executorService;

 public long insertUploadStatus(User user) {
    Callable<Long> insertCallable = () -> userDao.insert(user);
    long rowId = 0;

    Future<Long> future = executorService.submit(insertCallable);
     try {
         rowId = future.get();
    } catch (InterruptedException e1) {
        e1.printStackTrace();
    } catch (ExecutionException e) {
        e.printStackTrace();
    }
    return rowId;
 }

参照:Callableの詳細については、Java Executorサービスのチュートリアル


3

あなたのDaoでは、挿入クエリはLongつまり挿入されたrowIdを返します。

 @Insert(onConflict = OnConflictStrategy.REPLACE)
 fun insert(recipes: CookingRecipes): Long

あなたのModel(Repository)クラス:(MVVM)

fun addRecipesData(cookingRecipes: CookingRecipes): Single<Long>? {
        return Single.fromCallable<Long> { recipesDao.insertManual(cookingRecipes) }
}

ModelViewクラス:(MVVM)DisposableSingleObserverでLiveDataを処理します。
作業ソース参照:https : //github.com/SupriyaNaveen/CookingRecipes


1

多くの苦労の後、私はこれをなんとか解決しました。これがMMVMアーキテクチャを使用した私のソリューションです。

Student.kt

@Entity(tableName = "students")
data class Student(
    @NotNull var name: String,
    @NotNull var password: String,
    var subject: String,
    var email: String

) {

    @PrimaryKey(autoGenerate = true)
    var roll: Int = 0
}

StudentDao.kt

interface StudentDao {
    @Insert
    fun insertStudent(student: Student) : Long
}

StudentRepository.kt

    class StudentRepository private constructor(private val studentDao: StudentDao)
    {

        fun getStudents() = studentDao.getStudents()

        fun insertStudent(student: Student): Single<Long>? {
            return Single.fromCallable(
                Callable<Long> { studentDao.insertStudent(student) }
            )
        }

 companion object {

        // For Singleton instantiation
        @Volatile private var instance: StudentRepository? = null

        fun getInstance(studentDao: StudentDao) =
                instance ?: synchronized(this) {
                    instance ?: StudentRepository(studentDao).also { instance = it }
                }
    }
}

StudentViewModel.kt

class StudentViewModel (application: Application) : AndroidViewModel(application) {

var status = MutableLiveData<Boolean?>()
private var repository: StudentRepository = StudentRepository.getInstance( AppDatabase.getInstance(application).studentDao())
private val disposable = CompositeDisposable()

fun insertStudent(student: Student) {
        disposable.add(
            repository.insertStudent(student)
                ?.subscribeOn(Schedulers.newThread())
                ?.observeOn(AndroidSchedulers.mainThread())
                ?.subscribeWith(object : DisposableSingleObserver<Long>() {
                    override fun onSuccess(newReturnId: Long?) {
                        Log.d("ViewModel Insert", newReturnId.toString())
                        status.postValue(true)
                    }

                    override fun onError(e: Throwable?) {
                        status.postValue(false)
                    }

                })
        )
    }
}

フラグメントで:

class RegistrationFragment : Fragment() {
    private lateinit var dataBinding : FragmentRegistrationBinding
    private val viewModel: StudentViewModel by viewModels()

 override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
        super.onViewCreated(view, savedInstanceState)
        initialiseStudent()
        viewModel.status.observe(viewLifecycleOwner, Observer { status ->
            status?.let {
                if(it){
                    Toast.makeText(context , "Data Inserted Sucessfully" , Toast.LENGTH_LONG).show()
                    val action = RegistrationFragmentDirections.actionRegistrationFragmentToLoginFragment()
                    Navigation.findNavController(view).navigate(action)
                } else
                    Toast.makeText(context , "Something went wrong" , Toast.LENGTH_LONG).show()
                //Reset status value at first to prevent multitriggering
                //and to be available to trigger action again
                viewModel.status.value = null
                //Display Toast or snackbar
            }
        })

    }

    fun initialiseStudent() {
        var student = Student(name =dataBinding.edName.text.toString(),
            password= dataBinding.edPassword.text.toString(),
            subject = "",
            email = dataBinding.edEmail.text.toString())
        dataBinding.viewmodel = viewModel
        dataBinding.student = student
    }
}

私はDataBindingを使用しました。これが私のXMLです。

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools">

    <data>

        <variable
            name="student"
            type="com.kgandroid.studentsubject.data.Student" />

        <variable
            name="listener"
            type="com.kgandroid.studentsubject.view.RegistrationClickListener" />

        <variable
            name="viewmodel"
            type="com.kgandroid.studentsubject.viewmodel.StudentViewModel" />

    </data>


    <androidx.core.widget.NestedScrollView
        android:id="@+id/nestedScrollview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fillViewport="true"
        tools:context="com.kgandroid.studentsubject.view.RegistrationFragment">

        <androidx.constraintlayout.widget.ConstraintLayout
            android:id="@+id/constarintLayout"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:isScrollContainer="true">

            <TextView
                android:id="@+id/tvRoll"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_marginStart="16dp"
                android:layout_marginTop="16dp"
                android:layout_marginEnd="16dp"
                android:gravity="center_horizontal"
                android:text="Roll : 1"
                android:textColor="@color/colorPrimary"
                android:textSize="18sp"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toTopOf="parent" />

            <EditText
                android:id="@+id/edName"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginTop="24dp"
                android:layout_marginEnd="16dp"
                android:ems="10"
                android:inputType="textPersonName"
                android:text="Name"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintTop_toBottomOf="@+id/tvRoll" />

            <TextView
                android:id="@+id/tvName"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginStart="16dp"
                android:layout_marginEnd="16dp"
                android:text="Name:"
                android:textColor="@color/colorPrimary"
                android:textSize="18sp"
                app:layout_constraintBaseline_toBaselineOf="@+id/edName"
                app:layout_constraintEnd_toStartOf="@+id/edName"
                app:layout_constraintStart_toStartOf="parent" />

            <TextView
                android:id="@+id/tvEmail"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Email"
                android:textColor="@color/colorPrimary"
                android:textSize="18sp"
                app:layout_constraintBaseline_toBaselineOf="@+id/edEmail"
                app:layout_constraintEnd_toStartOf="@+id/edEmail"
                app:layout_constraintStart_toStartOf="parent" />

            <EditText
                android:id="@+id/edEmail"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginTop="24dp"
                android:layout_marginEnd="16dp"
                android:ems="10"
                android:inputType="textPersonName"
                android:text="Name"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintTop_toBottomOf="@+id/edName" />

            <TextView
                android:id="@+id/textView6"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Password"
                android:textColor="@color/colorPrimary"
                android:textSize="18sp"
                app:layout_constraintBaseline_toBaselineOf="@+id/edPassword"
                app:layout_constraintEnd_toStartOf="@+id/edPassword"
                app:layout_constraintStart_toStartOf="parent" />

            <EditText
                android:id="@+id/edPassword"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginTop="24dp"
                android:layout_marginEnd="16dp"
                android:ems="10"
                android:inputType="textPersonName"
                android:text="Name"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintTop_toBottomOf="@+id/edEmail" />

            <Button
                android:id="@+id/button"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_marginStart="32dp"
                android:layout_marginTop="24dp"
                android:layout_marginEnd="32dp"
                android:background="@color/colorPrimary"
                android:text="REGISTER"
                android:onClick="@{() -> viewmodel.insertStudent(student)}"
                android:textColor="@android:color/background_light"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintHorizontal_bias="0.0"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toBottomOf="@+id/edPassword" />
        </androidx.constraintlayout.widget.ConstraintLayout>


    </androidx.core.widget.NestedScrollView>
</layout>

部屋の挿入と削除の操作は別のスレッドで行う必要があるため、asynctaskでこれを達成するために多くの苦労をしました。最後に 、RxJavaで観察可能な単一タイプでこれを行うことができます。

rxjavaのGradle依存関係は次のとおりです。

implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'
implementation 'io.reactivex.rxjava2:rxjava:2.0.3' 

0

ドキュメントによると、@ Insertで注釈された関数は、rowIdを返すことができます。

@Insertメソッドが受け取るパラメーターが1つだけの場合、挿入されたアイテムの新しいrowIdであるlongを返すことができます。パラメータが配列またはコレクションの場合、代わりにlong []またはList <Long>を返す必要があります。

これで私が抱えている問題は、IDではなくrowIdを返すということです。それでも、rowIdを使用してIDを取得する方法がわかりません。

残念ながら、私はまだコメントできません。50の評判がないため、代わりにこれを回答として投稿しています。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.