Here is the official docs for Room Database. It contains the following code
val db = Room.databaseBuilder(
applicationContext,
AppDatabase::class.java, "database-name"
).build()
I was wondering what the "database-name" in the database builder does. What practical and tangible effects does it have?