我的java类中有以下代码,但我无法创建单个表,因为它不会选择数据库
//STEP 1. Import required packages
import java.sql.*;
public class DBTest {
// Database credentials
private static final String USER = "root";
private static final String PASS = "1234";
private static Connection conn = null;
private static Statement stmt = null;
static final String DB_URL = "jdbc:mysql://localhost/";
public static void main(String[] args) throws SQLException, ClassNotFoundException {
getConnection();
}
public static Connection getConnection() throws SQLException, ClassNotFoundException {
try {
System.out.println("Connecting to database...");
conn = DriverManager.getConnection(DB_URL, USER, PASS);
createTable(conn);
} catch (SQLException se) {
se.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
} finally {
// finally block used to close resources
try {
if (stmt != null)
stmt.close();
} catch (SQLException se2) {
} // nothing we can do
try {
if (conn != null)
conn.close();
} catch (SQLException se) {
se.printStackTrace();
} // end finally try
} // end try
return conn;
}
public static void createTable(Connection conn) throws SQLException {
System.out.println("Creating database...");
stmt = conn.createStatement();
// Open a connection
System.out.println("Connecting to a selected database...");
conn = DriverManager.getConnection(DB_URL, USER, PASS);
System.out.println("Connected database successfully...");
// Execute a query
System.out.println("Creating table in given database...");
String sql = "CREATE TABLE REGISTRATION " + "(id INTEGER not NULL, " + " first VARCHAR(255), "
+ " last VARCHAR(255), " + " age INTEGER, " + " PRIMARY KEY ( id ))";
stmt.executeUpdate(sql);
System.out.println("Created table in given database...");
}
}
请注意:我导入的唯一库是java.sql,并且我的引用库中有连接器,因此应该设置所有内容!
考虑到这一切,任何人都可以让我知道为什么我得到没有选择数据库 SQLException?
答案 0 :(得分:5)
在您的DB_URL变量中缺少数据库的名称:
你需要:
jdbc:mysql://localhost/my_db_name
其中my_db_name
是您创建的数据库的名称。
答案 1 :(得分:2)
如果连接到数据库,则只能创建表。目前您只连接到服务器,因此无法执行CREATE TABLE
之类的语句,因为没有任何内容可以创建该表。
您需要在连接字符串中指定数据库:
jdbc:mysql://localhost/<database>
或者您需要明确需要使用以下命令切换到数据库:
connection.setCatalog("<database>");
从评论中看来,您的实际问题是如何从java创建新数据库,对于该问题的答案,您需要查看:Create MySQL database from Java。