jw
mapper = ::CountryData
Daniele B
fun LocalDb.setCountriesList(list : List<CountryListData>) { countriesQueries.transaction { list.forEach { countriesQueries.updateCountry( name = it.name, population = it.population, first_doses = it.firstDoses, fully_vaccinated = it.fullyVaccinated, ) } } }
updateCountry: INSERT OR REPLACE INTO Countries(name,population,first_doses,fully_vaccinated) VALUES(?,?,?,?);
A modern programming language that makes developers happier.