Guest User

Untitled

a guest
Dec 14th, 2017
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.20 KB | None | 0 0
  1. @Dao
  2. public interface CountryDao {
  3. @Insert(onConflict = OnConflictStrategy.REPLACE)
  4. void addCountry(Country country);  
  5. @Query("SELECT DISTINCT name from country")
  6. public List<String> getCountry();
  7. }
Add Comment
Please, Sign In to add comment