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

  • 相关阅读:
    bzoj 1017 魔兽地图DotR
    poj 1322 chocolate
    bzoj 1045 糖果传递
    poj 3067 japan
    timus 1109 Conference(二分图匹配)
    URAL 1205 By the Underground or by Foot?(SPFA)
    URAL 1242 Werewolf(DFS)
    timus 1033 Labyrinth(BFS)
    URAL 1208 Legendary Teams Contest(DFS)
    URAL 1930 Ivan's Car(BFS)
  • 原文地址:https://www.cnblogs.com/hang-hang/p/12747779.html
Copyright © 2011-2022 走看看