java向数据库插入数据时同步更新创建时间‘’
时间: 2023-08-21 21:05:00 浏览: 91
向数据库插入datetime类型的数据
4星 · 用户满意度95%
在Java中向数据库插入数据时同步更新创建时间可以通过以下步骤实现:
1. 在数据库表中添加一个创建时间的字段,例如create_time,类型为datetime或timestamp。
2. 在Java程序中,使用java.sql包中的PreparedStatement对象来执行SQL语句。
3. 在执行插入操作之前,获取当前时间并转换为java.sql.Timestamp类型。
4. 将当前时间设置为create_time字段的值。
5. 执行插入操作。
以下是一个示例代码:
```java
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.sql.Timestamp;
import java.util.Date;
public class InsertData {
public static void main(String[] args) {
String url = "jdbc:mysql://localhost:3306/test";
String username = "root";
String password = "root";
String sql = "INSERT INTO user(name, age, create_time) VALUES (?, ?, ?)";
try {
Connection conn = DriverManager.getConnection(url, username, password);
PreparedStatement pstmt = conn.prepareStatement(sql);
// 设置参数
pstmt.setString(1, "张三");
pstmt.setInt(2, 20);
// 设置创建时间为当前时间
Timestamp createTime = new Timestamp(new Date().getTime());
pstmt.setTimestamp(3, createTime);
// 执行插入操作
int rows = pstmt.executeUpdate();
System.out.println("插入了" + rows + "行数据");
pstmt.close();
conn.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
}
```
在上述代码中,我们使用了java.sql.Timestamp类来表示时间,并将其设置为create_time字段的值。这样,每次插入数据时都会自动更新该字段的值为当前时间。
阅读全文