JDBC之Java连接mysql实现增删改查

使用软件:mysql、eclipse

链接步骤:

1.注册驱动 

2.创建一个连接对象

3.写sql语句

4.执行sql语句并返回一个结果或者结果集

5.关闭链接(一般就是connection、statement、setresult)这三个连接对象,关闭顺序一般是(setresult    --->  statement  -->  setresult  )

一、直接连接方法:(这种方法就是讲sql语句和结果所有的步骤写在一起) 不建议使用该方法

1 public static void main(String[] args) { 2 String url = "jdbc:mysql://localhost:3306/students"; 3 String user = "root"; 4 String password = "admin"; 5 Connection conn = null; 6 Statement st = null; 7 8 try { 9 // 1. 注册驱动 10 Class.forName("com.mysql.jdbc.Driver"); 11 // 2. 创建一个链接对象 12 conn = DriverManager.getConnection(url,user,password); 13 // 3. 创建一个sql语句的发送命令对象 14 String sql = "insert into student values(\'2001\',\'Tom\',\'20\',\'7000\')"; 15 st= conn.createStatement(); 16 // 4. 执行sql语句,拿到查询的结果集对象 17 st.executeQuery(sql);20 } catch (Exception e) { 21 e.printStackTrace(); 22 }finally { 23 // 5. 关闭链接 ,命令对象 ,结果集 24 if(st != null) { 25 try { 26 st.close(); 27 } catch (Exception e) { 28 e.printStackTrace(); 29 } 30 } 31 if(conn != null) { 32 try { 33 conn.close(); 34 } catch (Exception e) { 35 e.printStackTrace(); 36 } 37 } 38 }

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zzzfww.html