Java-MySQL連接
阿新 • • 發佈:2017-09-03
con images 技術 arc myeclips 技術分享 bsp mysql lips
一、復制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
Java-MySQL連接