idea将数据存入到一个表里
时间: 2024-03-17 08:43:00 浏览: 112
你可以按照以下步骤将数据存储到表中:
1. 连接数据库,打开数据库连接。
2. 创建表,定义表的字段和数据类型。
3. 使用 INSERT 语句将数据插入到表中。
4. 关闭数据库连接。
以下是一个示例代码,可以将数据存储到名为 "employee" 的表中:
```
import java.sql.*;
public class StoreData {
public static void main(String[] args) {
Connection conn = null;
Statement stmt = null;
try {
// 连接数据库
Class.forName("com.mysql.jdbc.Driver");
conn = DriverManager.getConnection("jdbc:mysql://localhost/test","root","password");
// 创建表
stmt = conn.createStatement();
String sql = "CREATE TABLE employee " +
"(id INTEGER not NULL, " +
" name VARCHAR(255), " +
" age INTEGER, " +
" PRIMARY KEY ( id ))";
stmt.executeUpdate(sql);
// 插入数据
sql = "INSERT INTO employee " +
"VALUES (1, 'John Doe', 25)";
stmt.executeUpdate(sql);
// 关闭连接
stmt.close();
conn.close();
} catch(SQLException se) {
// 处理 JDBC 错误
se.printStackTrace();
} catch(Exception e) {
// 处理 Class.forName 错误
e.printStackTrace();
} finally {
// 关闭资源
try {
if(stmt!=null) stmt.close();
} catch(SQLException se2) {
}
try {
if(conn!=null) conn.close();
} catch(SQLException se) {
se.printStackTrace();
}
}
}
}
```
这段代码会创建一个名为 "employee" 的表,并将一条数据插入到表中。你可以根据自己的需求修改表名、字段名、数据类型和数据内容。
阅读全文