zoukankan      html  css  js  c++  java
  • 团队冲刺——第五天

    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)
        {
        }
    }

  • 相关阅读:
    1010考试T1
    P5631 最小mex生成树 分治 并查集
    P4366 [Code+#4]最短路 建图 最短路
    P1654 OSU! 期望概率DP
    7.26集训
    7.25集训
    7.23集训
    7.22集训
    7.21test
    7.12test
  • 原文地址:https://www.cnblogs.com/hang-hang/p/12747779.html
Copyright © 2011-2022 走看看