欢迎您,请 登录 或 注册会员

偶久网

楼主: 黑框眼镜

火影天殇2.4.1黑式破解 全定制英雄+全赞助特权+宇智波团扇+去除限制+无CD全屏闪

  [复制链接]
JENNIE
发表于 2020-11-20 19:10:05
遇见神帖岂能不顶?
xuzhenwoaini
发表于 2020-11-30 15:45:27
感谢楼主,66666
cbx
发表于 2020-12-26 21:52:41
感谢楼主,66666
huxuehang
发表于 2021-4-19 20:02:50
package dao.impl;

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.List;

import bean.Student2;
import dao.Student2Dao;

public class Student2DaoImpl implements Student2Dao {

        @Override
        public int deleteStudent(int stuno) {
                Connection con=null;
                PreparedStatement pps=null;
                int k=0;
                try {
                        Class.forName("com.mysql.jdbc.Driver");
                        con=DriverManager.getConnection("jdbc:mysql://192.168.1.40:3306/a1","root","654321");
                        //得到预状态通道
                        String sql="delete from student2 where stuno=?";
                        pps=con.prepareStatement(sql);
                       
                        pps.setInt(1, stuno);
                        k=pps.executeUpdate();
                       
                } catch (ClassNotFoundException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                } catch (SQLException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                }finally{
                        try {
                                if(pps!=null){
                                        pps.close();
                                }
                                if(con!=null){
                                        con.close();
                                }
                        } catch (SQLException e) {
                                // TODO Auto-generated catch block
                                e.printStackTrace();
                        }
                }
               
                return k;
        }

        @Override
        public List findall() {
                Connection con=null;
                PreparedStatement pps=null;
                ResultSet rs=null;
                List list=new ArrayList();
                try {
                        Class.forName("com.mysql.jdbc.Driver");
                        con=DriverManager.getConnection("jdbc:mysql://localhost:3306/yhp","root","123456");
                        //得到预状态通道
                        String sql="select * from student2";
                        pps=con.prepareStatement(sql);
               
                        rs=pps.executeQuery();
                        while(rs.next()){
                                Student2 stu=new Student2();
                                stu.setStuname(rs.getString("stuname"));
                                stu.setAddress(rs.getString("address"));
                                list.add(stu);
                        }
                       
                } catch (ClassNotFoundException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                } catch (SQLException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                }finally{
                        try {
                                if(rs!=null){
                                        rs.close();
                                }
                                if(pps!=null){
                                        pps.close();
                                }
                                if(con!=null){
                                        con.close();
                                }
                        } catch (SQLException e) {
                                // TODO Auto-generated catch block
                                e.printStackTrace();
                        }
                }
                return list;
        }

        @Override
        public int insertStudent(Student2 stu) {
                Connection con=null;
                PreparedStatement pps=null;
                int k=0;
                try {
                        Class.forName("com.mysql.jdbc.Driver");
                        con=DriverManager.getConnection("jdbc:mysql://localhost:3306/yhp","root","123456");
                        //得到预状态通道
                        String sql="insert into student2 values(null,?,?,?,?,?)";
                        pps=con.prepareStatement(sql);
                       
                        pps.setString(1,stu.getStuname());
                        pps.setInt(2,stu.getAge());
                        SimpleDateFormat sf=new SimpleDateFormat("yyyy-MM-dd");
                        pps.setString(3,sf.format(stu.getBirthday()));
                        pps.setString(4,stu.getAddress());
                        pps.setString(5,stu.getPassword());
                       
                       
                        k=pps.executeUpdate();
                       
                } catch (ClassNotFoundException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                } catch (SQLException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                }finally{
                        try {
                                if(pps!=null){
                                        pps.close();
                                }
                                if(con!=null){
                                        con.close();
                                }
                        } catch (SQLException e) {
                                // TODO Auto-generated catch block
                                e.printStackTrace();
                        }
                }
                return k;
        }

        @Override
        public int updateStudent(Student2 stu) {
                Connection con=null;
                PreparedStatement pps=null;
                int k=0;
                try {
                        Class.forName("com.mysql.jdbc.Driver");
                        con=DriverManager.getConnection("jdbc:mysql://localhost:3306/yhp","root","123456");
                        //得到预状态通道
                        String sql="update student2 set stuname=?,age=?,birthday=?,address=?,password=? " +
                                        "   where stuno=?";
                        pps=con.prepareStatement(sql);
                       
                        pps.setString(1,stu.getStuname());
                        pps.setInt(2,stu.getAge());
                        SimpleDateFormat sf=new SimpleDateFormat("yyyy-MM-dd");
                        pps.setString(3,sf.format(stu.getBirthday()));
                        pps.setString(4,stu.getAddress());
                        pps.setString(5,stu.getPassword());
                        pps.setInt(6, stu.getStuno());
                       
                        k=pps.executeUpdate();
                       
                } catch (ClassNotFoundException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                } catch (SQLException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                }finally{
                        try {
                                if(pps!=null){
                                        pps.close();
                                }
                                if(con!=null){
                                        con.close();
                                }
                        } catch (SQLException e) {
                                // TODO Auto-generated catch block
                                e.printStackTrace();
                        }
                }
                return k;
        }

}
舞绝城
发表于 2021-6-16 22:22:59
确实是难得好帖,顶感谢偶久网分享的内容
广告刚刚
发表于 2021-6-18 22:09:33
好帖支持一下!!
发表于 2021-7-6 16:16:32
正需要,支持偶久网
发表于 2021-7-6 22:50:45
23322323223
落果
发表于 2021-8-26 02:23:50
人少,我来小顶一下
嘉峪关
发表于 2021-8-26 22:05:10
11111111111111111
快速回复 返回顶部 返回列表