zoukankan      html  css  js  c++  java
  • MySQL JBDC 连接测试

    package cn.xh.jdbc;
    
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.SQLException;
    import java.sql.Statement;
    
    public class Demo01 {
    
        public static void main(String[] args) {
            // TODO Auto-generated method stub
            Statement st=null;
            Connection conn=null;
                
            try {
                //1.加载MYSQL 数据库驱动
                Class.forName("com.mysql.cj.jdbc.Driver");
                //2.创建连接
                //定义链接(注意设置编码UTF-8)
                 //String url ="jdbc:mysql://192.168.47.10:3306/students?user=root&password=123456.&useUnicode=true&characterEncoding=utf8" ;
                 String user= "root";  //定义用户
                 String password="123456";  //定义密码  --studentss  是数据库
                 String url2="jdbc:mysql://192.168.47.10:3306/students?useUncode=trun&characterEncoding=UTF-8";  //定义地址
                 System.out.println("开始连接当中......");
                 conn = DriverManager.getConnection(url2,user,password);   //连接参数
                 System.out.println("连接成功!");
                                  
                //3.创建 statement,执行操作
                 
                 String sql = "INSERT INTO tb_stu(id,NAME,sex,birthday,age) VALUES(15,'大王','男','2013-6-3','8')";
                 st =    conn.createStatement(); 
                 int result =  st.executeUpdate(sql);
            
                 System.out.println(result);
                    
                
                
                
            } catch (ClassNotFoundException e) {
                    e.printStackTrace();
            }catch (SQLException e) {
                    e.printStackTrace();
            }
            finally {
                if(st !=null) {
                try {
                    st.close();
                } catch (SQLException e) {
                    // TODO: handle exception
                    e.printStackTrace();
                }
                }
                if(conn !=null) {
                    try {
                        conn.close();
                    } catch (SQLException e) {
                        // TODO: handle exception
                        e.printStackTrace();
                    }
                }    
            }
            
        }
        }
    明天的你会感谢今天拼命奋斗的自己
  • 相关阅读:
    java栈的最大深度?
    String hashCode 方法为什么选择数字31作为乘子
    LinkedList 源码分析(JDK 1.8)
    ArrayList 源码分析
    LinkedHashMap 源码详细分析(JDK1.8)
    Java并发基础:了解无锁CAS就从源码分析
    IntelliJ IDEA(2018)安装详解
    HashMap 源码详细分析(JDK1.8)
    Java原子类实现原理分析
    谈谈Java中的volatile
  • 原文地址:https://www.cnblogs.com/qzqdy/p/15376424.html
Copyright © 2011-2022 走看看