Exporting Room Database to csv file in android
问题 There are many tutorials available for exporting SQLite database to csv file but not enough stuff for exporting from room database. Using sqlite export reference Exporting SQLite Database to csv file in android parsing each column of row manually for room. Following is my code: @Dao interface CategoryDao { @Query("SELECT * FROM Category") fun getAllCategory(): List<Category> } // Export csv logic val categoryList = categoryDao.getAllCategory() val csvWrite = CSVWriter(FileWriter(file)) for