• 团队冲刺——第五天


    https://www.cnblogs.com/three3/p/12747652.html

    今天写代码数量:package com.example.a15979.shudong;

    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.SQLException;

    public class DBUtil
    {
        private  String name=null;
        private  String pass=null;

        public DBUtil(String m,String p){
            this.name=m;
            this.pass=p;
        }
        private static Connection getSQLConnection(String ip, String user, String pwd, String db)
        {
            Connection con = null;
            try
            {
                Class.forName("net.sourceforge.jtds.jdbc.Driver");
                con = DriverManager.getConnection("jdbc:jtds:sqlserver://" + ip + ":3306/" + db + ";charset=utf8", user, pwd);
            } catch (ClassNotFoundException e)
            {
                e.printStackTrace();
            } catch (SQLException e)
            {
                e.printStackTrace();
            }
            return con;
        }

        public String QuerySQL()
        {
            String result = "";
            try
            {
                Connection conn= getSQLConnection("39.97.109.245", "root", "abc456", "TDTreeHole");//根据自己的数据库信息填写对应的值
                String sql = "select username from user  where password=? and  username=? ";
                PreparedStatement stat = conn.prepareStatement(sql);
                stat.setString(1, pass);
                stat.setString(2, name);
                ResultSet rs = stat.executeQuery();
                while (rs.next())
                {
                    result= "1" ;
                }
                rs.close();
                conn.close();
            } catch (SQLException e)
            {
                e.printStackTrace();
                result += "查询数据异常!" + e.getMessage();
            }
            return result;
        }
        public static void main(String[] args)
        {
        }
    }

  • 相关阅读:
    postman设置页面详解
    postman安装使用
    测试入门1:黑盒测试用例设计方法
    oo第十六次作业
    oo第三单元总结
    OO第二单元总结
    select语句
    MySQL数据库基础操作
    创建和查看数据库
    认识MySQL数据库
  • 原文地址:https://www.cnblogs.com/hang-hang/p/12747779.html
Copyright © 2020-2023  润新知