1
13693261870
2022-11-12 789027cd17a31a439efeef8ba1ef61705ba43edc
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SQLite;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Community.DAL
{
    public class QueryDAL
    {
        private const string _queryBuilding = "select b.Id,r.Province,r.City,r.County,r.Street,r.Community,b.Name from Building b inner join Region r on b.Region=r.Id where b.Id={0}";
 
        private const string _queryHouse = "select h.Id,h.FullName,s.Status,h.Remark from House h inner join Building b on h.Building=b.Id inner join HouseState s on h.HouseState=s.Id where b.Name=@Name and h.Unit=@Unit and h.HouseNum=@num";
 
        private const string _queryHouseholdByHouse = "select h.Id,t.Status,h.Name,h.Gender,h.Nation,h.Political,h.IdNum,h.Addr,h.Phone,h.Remark from Household h inner join HoldType t on h.HoldType=t.Id where House={0}";
 
        private const string _queryHoseholdByName = "select h.Id,t.Status,h.Name,h.Gender,h.Nation,h.Political,h.IdNum,h.Addr,h.Phone,h.Remark from Household h inner join HoldType t on h.HoldType=t.Id where h.Name like @Name limit 20";
 
        private const string _queryHouseholdByBuilding = "select h.Id,t.Status,h.Name,h.Gender,h.Nation,h.Political,h.IdNum,h.Addr,h.Phone,h.Remark,b.Name BName,o.Unit,o.HouseNum from Household h inner join HoldType t on h.HoldType=t.Id inner join House o on h.House=o.Id inner join Building b on o.Building=b.Id where b.Name=@Name and o.Unit=@Unit and o.HouseNum=@num";
 
        private const string _queryHouseholdByUserId = "select h.Id,t.Status,h.Name,h.Gender,h.Nation,h.Political,h.IdNum,h.Addr,h.Phone,h.Remark,b.Name BName,o.Unit,o.HouseNum from Household h inner join HoldType t on h.HoldType=t.Id inner join House o on h.House=o.Id inner join Building b on o.Building=b.Id where o.Id=(select House from Household where Id={0})";
 
        private const string _countGender = "select hh.Gender,Count(1) Count from Building b inner join House h on h.Building=b.Id inner join Household hh on hh.House=h.Id where b.Name=@Name group by hh.Gender order by Count";
 
        private const string _countNation = "select hh.Nation,Count(1) Count from Building b inner join House h on h.Building=b.Id inner join Household hh on hh.House=h.Id where b.Name=@Name group by Nation having count(1)>2 order by Count";
 
        private const string _countPolitical = "select hh.Political,Count(1) Count from Building b inner join House h on h.Building=b.Id inner join Household hh on hh.House=h.Id where b.Name=@Name group by Political order by Count";
 
        private const string _countHouse = "select Count(1) Count from Building b inner join House h on h.Building=b.Id where b.Name=@Name";
 
        private const string _countStatus = "select t.Status,Count(1) Count from Household hh inner join HoldType t on hh.HoldType=t.Id inner join House h on hh.House=h.Id inner join Building b on h.Building=b.Id where b.Name=@Name group by HoldType order by Count";
 
        public static DataTable QueryBuildingById(int id)
        {
            string sql = string.Format(_queryBuilding, id);
 
            return SQLiteHelper.GetDataTable(sql, null);
        }
 
        public static DataTable QueryHouse(string name, string unit, string num)
        {
            try
            {
                SQLiteParameter s1 = new SQLiteParameter("@Name");
                s1.Value = name;
 
                SQLiteParameter s2 = new SQLiteParameter("@Unit");
                s2.Value = unit;
 
                SQLiteParameter s3 = new SQLiteParameter("@num");
                s3.Value = num;
 
                List<SQLiteParameter> list = new List<SQLiteParameter>() { s1, s2, s3 };
 
                return SQLiteHelper.GetDataTable(_queryHouse, list.ToArray());
            }
            catch
            {
                return null;
            }
        }
 
        public static DataTable QueryHousehold(int id)
        {
            try
            {
                string sql = string.Format(_queryHouseholdByHouse, id);
 
                return SQLiteHelper.GetDataTable(sql, null);
            }
            catch
            {
                return null;
            }
        }
 
        public static DataTable QueryHousehold(string name)
        {
            try
            {
                SQLiteParameter s1 = new SQLiteParameter("@Name");
                s1.Value = string.Format("%{0}%", name);
 
                List<SQLiteParameter> list = new List<SQLiteParameter>() { s1 };
 
                return SQLiteHelper.GetDataTable(_queryHoseholdByName, list.ToArray());
            }
            catch
            {
                return null;
            }
        }
 
        public static DataTable QueryHouseholdByBuilding(string name, string unit, string num)
        {
            try
            {
                SQLiteParameter s1 = new SQLiteParameter("@Name");
                s1.Value = name;
 
                SQLiteParameter s2 = new SQLiteParameter("@Unit");
                s2.Value = unit;
 
                SQLiteParameter s3 = new SQLiteParameter("@num");
                s3.Value = num;
 
                List<SQLiteParameter> list = new List<SQLiteParameter>() { s1, s2, s3 };
 
                return SQLiteHelper.GetDataTable(_queryHouseholdByBuilding, list.ToArray());
            }
            catch
            {
                return null;
            }
        }
 
        public static DataTable QueryHouseholdByUserId(int id)
        {
            try
            {
                string sql = string.Format(_queryHouseholdByUserId, id);
 
                return SQLiteHelper.GetDataTable(sql, null);
            }
            catch
            {
                return null;
            }
        }
 
        public static DataTable CountGender(string name)
        {
            try
            {
                SQLiteParameter s1 = new SQLiteParameter("@Name");
                s1.Value = name;
 
                List<SQLiteParameter> list = new List<SQLiteParameter>() { s1 };
 
                return SQLiteHelper.GetDataTable(_countGender, list.ToArray());
            }
            catch
            {
                return null;
            }
        }
 
        public static DataTable CountNation(string name)
        {
            try
            {
                SQLiteParameter s1 = new SQLiteParameter("@Name");
                s1.Value = name;
 
                List<SQLiteParameter> list = new List<SQLiteParameter>() { s1 };
 
                return SQLiteHelper.GetDataTable(_countNation, list.ToArray());
            }
            catch
            {
                return null;
            }
        }
 
        public static DataTable CountPolitical(string name)
        {
            try
            {
                SQLiteParameter s1 = new SQLiteParameter("@Name");
                s1.Value = name;
 
                List<SQLiteParameter> list = new List<SQLiteParameter>() { s1 };
 
                return SQLiteHelper.GetDataTable(_countPolitical, list.ToArray());
            }
            catch
            {
                return null;
            }
        }
 
        public static DataTable CountHouse(string name)
        {
            try
            {
                SQLiteParameter s1 = new SQLiteParameter("@Name");
                s1.Value = name;
 
                List<SQLiteParameter> list = new List<SQLiteParameter>() { s1 };
 
                return SQLiteHelper.GetDataTable(_countHouse, list.ToArray());
            }
            catch
            {
                return null;
            }
        }
 
        public static DataTable CountStatus(string name)
        {
            try
            {
                SQLiteParameter s1 = new SQLiteParameter("@Name");
                s1.Value = name;
 
                List<SQLiteParameter> list = new List<SQLiteParameter>() { s1 };
 
                return SQLiteHelper.GetDataTable(_countStatus, list.ToArray());
            }
            catch
            {
                return null;
            }
        }
    }
}