美文网首页
这是一篇测试文

这是一篇测试文

作者: 刘力思 | 来源:发表于2016-02-20 22:21 被阅读0次

    泸沽湖的女儿

    美丽的泸沽湖!


    lige.JPG
    • 前段时间去泸沽湖,里格半岛。
      第一天就住进里格的一家青年旅舍,超级便宜哈,三人间100块,有电热毯

    没事儿看看以前写的代码:

    /**
     * @author liushy
     */
    import java.sql.*;
    
    public class Sqltest {
        public static void main(String args[]) {
            try {
                Class.forName("com.mysql.jdbc.Driver"); // 加载MYSQL JDBC驱动程序
                // Class.forName("org.gjt.mm.mysql.Driver");
                System.out.println("Success loading Mysql Driver!");
            } catch (Exception e) {
                System.out.print("Error loading Mysql Driver!");
                e.printStackTrace();
            }
            try {
                Connection connect = DriverManager.getConnection(
                        "jdbc:mysql://localhost:3306/test", "root", "password");
                // 连接URL为 jdbc:mysql//服务器地址/数据库名 ,后面的2个参数分别是登陆用户名和密码
    
                System.out.println("Success connect Mysql server!");
                int num = 100;
                PreparedStatement Statement = connect
                        .prepareStatement("INSERT INTO ue VALUES(?,?)");//现在sql端创建表ue以及表的字段属性
                for (int i = 0; i < num; i++) // 定义个100次的循环,往表里插入一百条信息。
                {
                    Statement.setString(1, "student" + i);
                    Statement.setString(2, "bo" + i);
                    Statement.executeUpdate();
                }
    
                Statement stmt = connect.createStatement();
                ResultSet rs = stmt.executeQuery("select * from ue");
                // ue 为你表的名称
                while (rs.next()) {
                    System.out.println(rs.getString("name")+"  "+rs.getString("num"));
                }
            } catch (Exception e) {
                System.out.print("get data error!");
                e.printStackTrace();
            }
        }
    }      
    

    其中的函数Class.forName("com.mysql.jdbc.Driver")用于加载MYSQL JDBC驱动程序,

    Connection connect = DriverManager.getConnection( "jdbc:mysql://localhost:3306/test", "root", "password");   
    

    用来连接URL为 jdbc:mysql//服务器地址/数据库名,后面的2个参数分别是登陆用户名和密码。
    (注:本文主要用来熟悉md语法)

    相关文章

      网友评论

          本文标题:这是一篇测试文

          本文链接:https://www.haomeiwen.com/subject/kxuvkttx.html