summaryrefslogtreecommitdiff
path: root/foo/bar/ComplexDao.java
blob: 89859e50e0ed2af596151a56478d4fff20d160b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
 * Copyright (C) 2016 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package foo.bar;
import android.arch.persistence.room.*;
import java.util.List;
import android.arch.lifecycle.LiveData;
@Dao
abstract class ComplexDao {
    static class FullName {
        public int id;
        public String fullName;
    }

    private final ComplexDatabase mDb;

    public ComplexDao(ComplexDatabase db) {
        mDb = db;
    }

    @Transaction
    public boolean transactionMethod(int i, String s, long l) {
        return true;
    }

    @Query("SELECT name || lastName as fullName, uid as id FROM user where uid = :id")
    abstract public List<FullName> fullNames(int id);

    @Query("SELECT * FROM user where uid = :id")
    abstract public User getById(int id);

    @Query("SELECT * FROM user where name LIKE :name AND lastName LIKE :lastName")
    abstract public User findByName(String name, String lastName);

    @Query("SELECT * FROM user where uid IN (:ids)")
    abstract public List<User> loadAllByIds(int... ids);

    @Query("SELECT ageColumn FROM user where uid = :id")
    abstract int getAge(int id);

    @Query("SELECT ageColumn FROM user where uid IN(:ids)")
    abstract public int[] getAllAges(int... ids);

    @Query("SELECT ageColumn FROM user where uid IN(:ids)")
    abstract public List<Integer> getAllAgesAsList(List<Integer> ids);

    @Query("SELECT * FROM user where uid = :id")
    abstract public LiveData<User> getByIdLive(int id);

    @Query("SELECT * FROM user where uid IN (:ids)")
    abstract public LiveData<List<User>> loadUsersByIdsLive(int... ids);

    @Query("SELECT ageColumn FROM user where uid IN(:ids1) OR uid IN (:ids2) OR uid IN (:ids3)")
    abstract public List<Integer> getAllAgesAsList(List<Integer> ids1,
            int[] ids2, int... ids3);
}