0%

DAO层

2017年9月5日 下午4:10

先看:
JDBC,通过属性配置文件封装DbUtiles类
两种数据库连接池 (2017/9/5)

概述:

Dao(持久层)是与改进的DbUtiles层同时使用的,可以参考两种数据库连接池 (2017/9/5),这篇文件中就详细介绍了dao层和DbUtils的关系

附录代码:

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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
package com.shanxi.weixin.dao;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.sql.Types;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import com.shanxi.weixin.dbUtils.DbUtils;
/**
* superDao实现类
* 本类提供了 查询多条数据 查询单条数据 查询数量 对数据增删改的基本实现
*/
public class SuperDaoImpl implements SuperDao {

/**
* 不支持预编译的查询多条数据方法
* @param sql 需要执行的sql语句
* @return list 执行查询sql后返回的结果视图集合
*/
@Override
public List<Map<String, Object>> queryForList(String sql) {
List<Map<String,Object>> list = new ArrayList<Map<String, Object>>();
try {
Connection conn = DbUtils.getConnection();
Statement sta = conn.createStatement();
ResultSet rs = sta.executeQuery(sql);
list = rsToList(rs);
DbUtils.close();
} catch (SQLException e) {
e.printStackTrace();
}
return list;
}

/**
* 支持预编译的查询多条数据方法
* @param sql 需要执行的预编译sql语句
* @param types 预编译sql中参数的类型数组
* @param obj 预编译sql中参数的值数组
* @return 执行查询sql后返回的结果视图集合
*/
@Override
public List<Map<String, Object>> queryForList(String sql, int[] types, Object[] obj) {
List<Map<String, Object>> list = new ArrayList<Map<String, Object>>();
try {
Connection conn = DbUtils.getConnection();
PreparedStatement ps = conn.prepareStatement(sql);
//循环遍历参数数组 并将数组中的值设置给预编译sql
for (int i = 0; i < obj.length; i++) {
switch (types[i]) {
case Types.INTEGER:
ps.setInt(i+1,Integer.parseInt(obj[i].toString()));
break;
case Types.VARCHAR:
ps.setString(i+1,obj[i].toString());
break;
default:
ps.setString(i+1,obj[i].toString());
}
}
ResultSet rs = ps.executeQuery();
list = rsToList(rs);
DbUtils.close();

} catch (SQLException e) {
e.printStackTrace();
}

return list;
}

/**
* 不支持预编译的查询单条数据方法
* @param sql 需要执行的sql语句
* @return 执行查询sql后返回的单条数据
*/
@Override
public Map<String, Object> queryForMap(String sql) {
List<Map<String,Object>> list = new ArrayList<Map<String, Object>>();
try {

Connection conn = DbUtils.getConnection();
Statement sta = conn.createStatement();
ResultSet rs = sta.executeQuery(sql);
list = rsToList(rs);
DbUtils.close();
} catch (SQLException e) {
e.printStackTrace();
}
if(!list.isEmpty()){
return list.get(0);
}
return null;
}
/**
* 支持预编译的查询单条数据方法
* @param sql 需要执行的预编译sql语句
* @param types 预编译sql中参数的类型数组
* @param obj 预编译sql中参数的值数组
* @return 执行查询sql后返回的单条数据
*/
@Override
public Map<String, Object> queryForMap(String sql, int[] types, Object[] obj) {
List<Map<String, Object>> list = new ArrayList<Map<String, Object>>();
try {
Connection conn = DbUtils.getConnection();
PreparedStatement ps = conn.prepareStatement(sql);
//循环遍历参数数组 并将数组中的值设置给预编译sql
for (int i = 0; i < obj.length; i++) {
switch (types[i]) {
case Types.INTEGER:
ps.setInt(i+1,Integer.parseInt(obj[i].toString()));
break;
case Types.VARCHAR:
ps.setString(i+1,obj[i].toString());
break;
default:
ps.setString(i+1,obj[i].toString());
}
}
ResultSet rs = ps.executeQuery();
list = rsToList(rs);
DbUtils.close();

} catch (SQLException e) {
e.printStackTrace();
}
if(!list.isEmpty()){
return list.get(0);
}
return null;
}

/**
* 不支持预编译的增删改方法
* @param sql 需要执行的sql语句
* @return 对数据库操作后发生变化的数据条数
*/
@Override
public int excuteUpdate(String sql) {
try {
Connection conn = DbUtils.getConnection();
Statement sta = conn.createStatement();
int count = sta.executeUpdate(sql);
DbUtils.close();
return count;
} catch (SQLException e) {
e.printStackTrace();
}
return 0;
}

/**
* 支持预编译的增删改方法
* @param sql 需要执行的预编译sql语句
* @param types 预编译sql中参数的类型数组
* @param obj 预编译sql中参数的值数组
* @return 对数据库操作后发生变化的数据条数
*/
@Override
public int excuteUpdate(String sql, int[] types, Object[] obj) {
try {
Connection conn = DbUtils.getConnection();
PreparedStatement ps = conn.prepareStatement(sql);
//循环遍历参数数组 并将数组中的值设置给预编译sql
for (int i = 0; i < obj.length; i++) {
switch (types[i]) {
case Types.INTEGER:
ps.setInt(i+1,Integer.parseInt(obj[i].toString()));
break;
case Types.VARCHAR:
ps.setString(i+1,obj[i].toString());
break;
default:
ps.setString(i+1,obj[i].toString());
}
}
int count = ps.executeUpdate();
DbUtils.close();
return count;
} catch (SQLException e) {
e.printStackTrace();
}
return 0;
}

/**
* 不支持预编译的统计数据条数方法
* @param sql 需要执行的sql语句
* @return 查询sql执行后返回的条目数量结果
*/
@Override
public int queryForCount(String sql) {
try {
Connection conn = DbUtils.getConnection();
Statement sta = conn.createStatement();
ResultSet rs = sta.executeQuery(sql);
int count = 0 ;
while(rs.next()){
count = rs.getInt(1);
}
DbUtils.close();
return count;
} catch (SQLException e) {
e.printStackTrace();
}
return 0;
}

/**
* 支持预编译的统计数据条数方法
* @param sql 需要执行的预编译sql语句
* @param types 预编译sql中参数的类型数组
* @param obj 预编译sql中参数的值数组
* @return 查询sql执行后返回的条目数量结果
*/
@Override
public int queryForCount(String sql, int[] types, Object[] obj) {
try {
Connection conn = DbUtils.getConnection();
PreparedStatement ps = conn.prepareStatement(sql);
//循环遍历参数数组 并将数组中的值设置给预编译sql
for (int i = 0; i < obj.length; i++) {
switch (types[i]) {
case Types.INTEGER:
ps.setInt(i+1,Integer.parseInt(obj[i].toString()));
break;
case Types.VARCHAR:
ps.setString(i+1,obj[i].toString());
break;
default:
ps.setString(i+1,obj[i].toString());
}
}
ResultSet rs = ps.executeQuery();
int count = 0;
while(rs.next()){
count = rs.getInt(1);
}
DbUtils.close();
return count;
} catch (SQLException e) {
e.printStackTrace();
}
return 0;
}

/**
* 提供将ResultSet结果集转换为list集合的实现
* @param rs 需要转换的结果集视图
* @return list 转换后封装数据的集合
*/
private List<Map<String, Object>> rsToList(ResultSet rs) {
List<Map<String, Object>> list = new ArrayList<Map<String, Object>>();
try {
while(rs.next()){
Map<String, Object> map = new HashMap<String,Object>();
for (int i = 1; i <= rs.getMetaData().getColumnCount(); i++) {
switch (rs.getMetaData().getColumnType(i)) {
case Types.INTEGER:
map.put(rs.getMetaData().getColumnName(i),rs.getInt(i));
break;
case Types.VARCHAR:
map.put(rs.getMetaData().getColumnName(i),rs.getString(i));
break;
default:
map.put(rs.getMetaData().getColumnName(i),rs.getObject(i));
}
}
list.add(map);
}
} catch (SQLException e) {
e.printStackTrace();
}
return list;
}


public static void main(String[] args) {
//查询多条数据
SuperDao dao = new SuperDaoImpl();
String sql = "select * from people";
List<Map<String, Object>> list = dao.queryForList(sql);
System.out.println(list);
}
}