mqus

Results 99 comments of mqus

Does this problem still exist?

Usually, yes. I don't know why that shouldn't be the case.

I want to add, though, that if we want to add support for `database.runInTransaction` then we will have to give the inner function its own database (backed by the transaction)....

In our case the following should happen: The tables are automatically created if there is no prior database. The database version is also written to the db. Now, if the...

Assuming you had 2 versions of your app with different database versions 1 and 2. Lets go through the following two cases: 1. The user installs the app at version...

So I read https://developer.android.com/training/data-storage/room/migrating-db-versions and I couldn't see any explicit difference. Room *does* have more features, like configurable destructive migrations (we only fail) and an explicit order on which possible...

Yeah, new changes to entities and views are not automatically migrated. Although views could be migrated automatically with no downsides this wasn't implemented yet. You'll either have to write a...

lets track auto-migration of views here :) I think it could be worthwhile feature to have.