使用JDBC创建数据库
使用JDBC创建数据库
- 数据库的username:root
- 数据库的password:root
- 创建的数据库的名字:mydb
Java代码
package com.kaka.test_04;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.Statement;
public class CreateDatabases {
static final String JDBCDriver = "com.mysql.jdbc.Driver";
static final String Url = "jdbc:mysql://localhost/";
static final String username = "root";
static final String password = "root";
public static void main(String[] args){
Connection conn = null;
Statement stmt = null;
try{
Class.forName("com.mysql.jdbc.Driver");
System.out.println("连接数据库");
//连接数据库
conn = DriverManager.getConnection(Url, username, password);
System.out.println("创建数据库");
//获取执行的SQL的对象
stmt = conn.createStatement();
String sql = "CREATE DATABASE mydb";
stmt.executeUpdate(sql);
System.out.println("数据库创建成功");
}catch(SQLException se){
se.printStackTrace();
}catch(Exception e){
e.printStackTrace();
}finally{
try{
if(stmt!=null)
stmt.close();
}catch(SQLException se2){
}
try{
if(conn!=null)
conn.close();
}catch(SQLException se){
se.printStackTrace();
}
}
}
}