Java-MySQL连接
一、复制mysql连接工具
二、粘贴到MyEclipse
三、建立连接
四、代码操作
1 public class DDLDemo02 { 2 public static void main(String[] args) throws Exception { 3 String sql = "CREATE TABLE `t_student`(`id` " + 4 "BIGINT PRIMARY KEY AUTO_INCREMENT," + 5 " `name` VARCHAR(255), `age` INT)"; 6 7 // 1.加载注册驱动 8 Class.forName("com.mysql.jdbc.Driver"); 9 // 2.获取连接对象 10 Connection con = DriverManager.getConnection("" + 11 "jdbc:mysql:///jdbcdemo?useSSL=false", "root", "123456"); 12 // 3.获取语句对象 13 Statement statement = con.createStatement(); 14 15 // 4.执行SQL 16 statement.executeUpdate(sql); 17 18 // 5.释放资源close() 19 statement.close(); 20 con.close(); 21