在数据库jdbc里面创建一个名为student的数据表
时间: 2023-10-27 12:05:58 浏览: 161
student数据库数据表
4星 · 用户满意度95%
好的,以下是在 JDBC 中创建名为 student 的数据表的示例代码:
```
import java.sql.*;
public class CreateStudentTable {
static final String JDBC_DRIVER = "com.mysql.jdbc.Driver";
static final String DB_URL = "jdbc:mysql://localhost/yourDatabaseName";
static final String USER = "yourUsername";
static final String PASS = "yourPassword";
public static void main(String[] args) {
Connection conn = null;
Statement stmt = null;
try {
Class.forName("com.mysql.jdbc.Driver");
System.out.println("Connecting to database...");
conn = DriverManager.getConnection(DB_URL,USER,PASS);
System.out.println("Creating table...");
stmt = conn.createStatement();
String sql = "CREATE TABLE student " +
"(id INTEGER not NULL, " +
" name VARCHAR(255), " +
" age INTEGER, " +
" PRIMARY KEY ( id ))";
stmt.executeUpdate(sql);
System.out.println("Table created successfully...");
} catch(SQLException se) {
se.printStackTrace();
} catch(Exception e) {
e.printStackTrace();
} finally {
try {
if(stmt!=null)
conn.close();
} catch(SQLException se) {
}
try {
if(conn!=null)
conn.close();
} catch(SQLException se) {
se.printStackTrace();
}
}
System.out.println("Goodbye!");
}
}
```
请注意,您需要将 DB_URL,USER 和 PASS 替换为您自己的数据库 URL、用户名和密码。此代码将创建一个名为 student 的表,其中包含 id、name 和 age 列。id 列是主键。
阅读全文