首页 > 代码库 > Statement执行静态SQL语句
Statement执行静态SQL语句
import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; import java.sql.Statement; import org.junit.Test; public class Demo1 { private String url = "jdbc:mysql://localhost:3306/tableName"; private String user = "root"; private String password = "root"; @Test public void test1(){ Connection conn = null; Statement stmt = null; try{ //1、注册驱动 Class.forName("com.mysql.jdbc.Driver"); //2、创建连接对象 conn = DriverManager.getConnection(url, user, password); //3、创建Statement对象 stmt = conn.createStatement(); //4、准备sql语句 String sql = "CREATE TRABLE student(id PRIMARY KEY AUTO_INCREMENT,name VARCHAR(20), gender(2))"; //5、发送sql语句、执行sql语句 int count = stmt.executeUpdate(sql); //5、输出 System.out.println("影响了" + count + "行!"); }catch(Exception e){ e.printStackTrace(); throw new RuntimeException(e); }finally{ //7、关闭连接(顺序:后打开的先关闭) if(stmt != null){ try { stmt.close(); } catch (SQLException e) { e.printStackTrace(); throw new RuntimeException(e); } } if(conn != null){ try { conn.close(); } catch (SQLException e) { e.printStackTrace(); throw new RuntimeException(e); } } } } }
Statement执行静态SQL语句
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。