@Query("select bookSourceGroup from book_sources where trim(bookSourceGroup) <> ''")
@Query("select distinct bookSourceGroup from book_sources where trim(bookSourceGroup) <> ''")
funliveGroup():LiveData<List<String>>
funliveGroup():LiveData<List<String>>
@Query("select bookSourceGroup from book_sources where enabled = 1 and trim(bookSourceGroup) <> ''")
@Query("select distinct bookSourceGroup from book_sources where enabled = 1 and trim(bookSourceGroup) <> ''")
funliveGroupEnabled():LiveData<List<String>>
funliveGroupEnabled():LiveData<List<String>>
@Query("select bookSourceGroup from book_sources where enabledExplore = 1 and trim(exploreUrl) <> '' and trim(bookSourceGroup) <> ''")
@Query("select distinct bookSourceGroup from book_sources where enabledExplore = 1 and trim(exploreUrl) <> '' and trim(bookSourceGroup) <> ''")
funliveExploreGroup():LiveData<List<String>>
funliveExploreGroup():LiveData<List<String>>
@Query("select distinct enabled from book_sources where bookSourceName like :searchKey or bookSourceGroup like :searchKey or bookSourceUrl like :searchKey")