1 package dao;
2
3 import java.sql.Connection;
4 import java.sql.PreparedStatement;
5 import java.sql.ResultSet;
6 import java.sql.SQLException;
7 import java.util.ArrayList;
8 import java.util.List;
9
10 import entity.User;
11 import util.DButils;
12
13 public class UserDAO {
14
15 //DAO类:用于封装数据访问逻辑
16
17 public User find(String username) throws Exception {
18 User user = null;
19 Connection conn=null;
20 try {
21 conn=DButils.getConnection();
22 String sql="SELECT * FROM t_user WHERE username = ?";
23 PreparedStatement ps=conn.prepareStatement(sql);
24 ps.setString(1, username);
25 ResultSet rs=ps.executeQuery();
26
27 while(rs.next()) {
28
29 user=new User();
30 user.setUsername(username);
31 user.setId(rs.getInt("id"));
32 user.setPhone(rs.getString("phone"));
33 user.setPwd(rs.getString("pwd"));
34
35 }
36
37 } catch (SQLException e) {
38 e.printStackTrace();
39 throw new RuntimeException(e);
40 }finally {
41 DButils.closeConnection(conn);
42 }
43 return user;
44 }
45
46 public void delete(int id) throws Exception {
47 Connection conn=null;
48
49 try {
50 conn=DButils.getConnection();
51 String sql="delete from t_user where id=?";
52 PreparedStatement ps=conn.prepareStatement(sql);
53 ps.setInt(1, id);
54 ps.executeUpdate();
55
56 } catch (SQLException e) {
57 e.printStackTrace();
58 throw new RuntimeException(e);
59 }
60 }
61
62 public void save(User user) throws Exception {
63 Connection conn=null;
64
65 try {
66 conn=DButils.getConnection();
67 String sql="insert into t_user"
68 +"(username,pwd,phone)"
69 +"VALUES(?,?,?)";
70 PreparedStatement ps=conn.prepareStatement(sql);
71 ps.setString(1, user.getUsername());
72 ps.setString(2, user.getPwd());
73 ps.setString(3, user.getPhone());
74 ps.executeUpdate();
75 } catch (SQLException e) {
76 e.printStackTrace();
77 throw new RuntimeException(e);
78 }finally {
79 DButils.closeConnection(conn);
80 }
81 }
82
83 public List<User> findAll() throws Exception{
84 List<User> users=new ArrayList<User>();
85 Connection conn=null;
86
87 try {
88 conn=DButils.getConnection();
89 String sql="select * from t_user";
90 PreparedStatement ps=conn.prepareStatement(sql);
91 ResultSet rs=ps.executeQuery();
92
93 while(rs.next()){
94 int id=rs.getInt("id");
95 String username=rs.getString("username");
96 String pwd=rs.getString("pwd");
97 String phone=rs.getString("phone");
98
99 User user=new User();
100 user.setId(id);
101 user.setUsername(username);
102 user.setPwd(pwd);
103 user.setPhone(phone);
104
105 users.add(user);
106 }
107 } catch (SQLException e) {
108 e.printStackTrace();
109 throw new RuntimeException(e);
110 }finally{
111 DButils.closeConnection(conn);
112 }
113 return users;
114 }
115
116 }

Mysql Dao的更多相关文章

  1. springboot+mybatis集成多数据源MySQL/Oracle/SqlServer

    日常开发中可能时常会遇到一些这样的需求,业务数据库和第三方数据库,两个或多个数据库属于不同数据库厂商,这时候就需要通过配置来实现对数据库实现多源处理.大致说一下我的业务场景,框架本身是配置的sprin ...

  2. Mysql分区,分库和分表

    作者说的非常清楚了,感谢.地址为:http://haitian299.github.io/2016/05/26/mysql-partitioning/. 本人项目实践,使用sharding-jdbc进 ...

  3. JDBC与javaBean

    1.JDBC的概念: Java数据库连接技术(Java DataBase Connectivity)能实现java程序对各种数据库的访问, 由一组使用java语言编写的类 和 接口(jdbc api) ...

  4. springboot情操陶冶-web配置(六)

    本文则针对数据库的连接配置作下简单的分析,方便笔者理解以及后续的查阅 栗子当先 以我们经常用的mybatis数据库持久框架来操作mysql服务为例 环境依赖 1.JDK v1.8+ 2.springb ...

  5. springBoot多数据源(不同类型数据库)项目

    一个基于springboot的多数据源(mysql.sqlserver)项目,先看看项目结构,注意dao层 多数据源mysql配置代码: package com.douzi.robotcenter.c ...

  6. spring ,springmvc,mybatis 最基本的整合,没有多余的jar包和依赖 2018.9.29日

    最基本的ssm框架整合 本案例采用2018商业版intellij  idea  编辑器    maven项目管理工具  tomcat8.5 接着上一篇使用springmvc最基本配置开始 https: ...

  7. Mybatis的SqlSession理解(二)

    Mybaits加载执行该xml配置 class SqlSessionFactoryBean implements FactoryBean<SqlSessionFactory>, Initi ...

  8. Spring项目的配置文件们(web.xml context servlet springmvc)

    我们的spring项目目前用到的配置文件包括1--web.xml文件,这是java的web项目的配置文件.我理解它是servlet的配置文件,也就是说,与spring无关.即使你开发的是一个纯粹jsp ...

  9. 【异常】java.sql.SQLException: Could not retrieve transaction read-only status from server Query

    1 详细异常 java.sql.SQLException: Could not retrieve transaction read-only status , ], [ChargingOrderRea ...

  10. 【异常】update更新java.sql.SQLException: Duplicate entry '2019-07-30 00:00:00-110100' for key

    1 详细异常信息 User class threw exception: java.sql.SQLException: Duplicate entry '2019-07-30 00:00:00-110 ...

随机推荐

  1. Appium+RobotFrameWork测试环境搭建

    前提:搭建好robotframework环境 RF基于python2.7的版本实现的一套开源自动化测试框架 推荐使用Appium Desktop, 搭建Appium环境: 1. 搭建JDK 2. 搭建 ...

  2. 前端使用xlsx file-saver xlsx-style导出

    import FileSaver from 'file-saver' import XLSXStyle from "xlsx-style"; import XLSX from 'x ...

  3. Oracle常用的日期操作函数 to_char()和to_date

    https://www.cnblogs.com/zhangliang88/p/12924407.html

  4. MYSQL启动:'服务没有相应控制功能'问题解决

    启动 MySQL 服务,此处若是显示错误'服务没有相应控制功能' 尝试解决方法:访问如下网站: https://cn.dll-files.com/vcruntime140_1.dll.html  下载 ...

  5. react hook入门

    useState的使用 代码 const Search = (props: any) => { // useState() 采用一个初始 state 作为参数,也可以像这样使用一个空字符串. / ...

  6. python 在路径下创建文件/文本文件 没有路径自动创建

    1.一般在执行文件的同级目录下创建一个文本文件: file = open("1.txt", "w", encoding="utf8") # ...

  7. 关于同时使用Vue.js 和 Jquery时dom事件失效问题

    先加载vue.js,让页面渲染完成后加载jq,给jq绑定ready事件 $(document).ready(function(){ $(function(){ (Jq) }); });

  8. [SSH-1]publickey,gssapi-keyex,gssapi-with-mic

    实际上,是有两个不同的原因的,它们都会造成这个报错. 原因1)client端私钥文件权限太大 解决方法:chmod 400 ~/.ssh/id_rsa  #如果是RSA算法的话,私钥生成时默认叫id_ ...

  9. 关于sqlyang 连接远程服务器 MySQL "1251-client does not support authentication..."的处理办法

    原因是在mysql8之前的版本中加密规则为mysql_native_password而在mysql8以后的加密规则为caching_sha2_password. 做如下修改 ALTER USER 'r ...

  10. 13.java栈实现计算器

    更新了代码,能跑通了,昨天果然是太晚了脑子混了,今天一看其实就差一句,在最后while循环的时候忘记把拿到的oper从栈里pop出去了,导致oper栈一直不空就要一直从数据栈中取数据进行计算所以一直在 ...