Skip to content
Advertisement

For some reason my Android room DAO insert doesn’t work on Temi Robot

For some reason even after following some parts of the guide, I wasn’t able to insert a new entry to my database. retrival is okay. I don’t really want to do the respitory and viewmodel boilerplates as mentioned in the guide

I have put the relevant dependencies in build.gradle already. I am using Java 11.

TemiPatrolRoomDatabase.java:

JavaScript

TemiPatrolDAO.java

JavaScript

SettingsFragment.java:

JavaScript

AudioFile.java

JavaScript

Advertisement

Answer

One issue you have is with private int audioFileID; and that you are not specifying a value for the audioFileID when you use :-

JavaScript

and then

JavaScript

As an int defaults to 0, then without setting audioFileID, any but the first insert will have a UNIQUE conflict as the primary key MUST be a unique value within the table. An onConflictStrategy of IGNORE will simply ignore the conflict BUT and carry on without inserting the row.

I would suggest changing to use either :-

JavaScript

The reason is that an Object (Long) will default to null and in that case Room interprets (if the above is used) this as the value not being specified so the column and it’s value is omitted from the INSERT.

  • I suggest Long as the value can be Long. However, Integer could be used, but could be an issue if the number of rows is greater than what an int can hold (as such I will always code Long/long for an ID column).

Alternately, as the uriPath is likely to be unique, you could have this as the primary key and remove the audioFileID column e.g. :-

JavaScript
  • the disadvantage (possibly not of importance) with this is that as the column is not an INTEGER then it is not an alias of the rowid (a special column that in Room will always exist). Access via the rowid column can be significantly fatser (up to twice as fast). However, this is pretty much insignificant for smaller tables.

Another problem that you may encounter is after obtaining the Cursor (which will never be null if returned from an SQLiteDatabase (and therefore SupportSQLiteDatabase) method). If the Cursor is empty and you don’t check the result (true if moved, false if not (aka no rows)) of the moveToFirst then you will get an exception. So you should have something like:-

JavaScript
  • Note I haven’t checked the above code, so it may have some errors, it’s the principle that matters.
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement