1. 程式人生 > >Java-MySQL連接

Java-MySQL連接

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連接