jdbc添加Datetime类型的数据
时间: 2024-05-13 22:13:34 浏览: 87
向数据库插入datetime类型的数据
4星 · 用户满意度95%
可以使用PreparedStatement来添加Datetime类型的数据。首先,创建一个PreparedStatement对象并使用setTimestamp()方法来设置时间戳值,然后执行该语句。例如:
```
String sql = "INSERT INTO my_table (id, name, create_time) VALUES (?, ?, ?)";
PreparedStatement pstmt = conn.prepareStatement(sql);
pstmt.setInt(1, 1);
pstmt.setString(2, "test");
Timestamp timestamp = new Timestamp(System.currentTimeMillis());
pstmt.setTimestamp(3, timestamp);
pstmt.executeUpdate();
```
这将向名为my_table的表中插入一条记录,包括id、name和create_time字段。create_time字段的值将设置为当前时间戳。
阅读全文