如何使用准备好的语句设置当前日期和时间?

发布于 2024-12-07 15:12:15 字数 89 浏览 1 评论 0原文

我在数据库中有一个数据类型为DATETIME的列。我想使用“PreparedStatement”将此列值设置为当前日期和时间。我该怎么做?

I have a column in database having datatype DATETIME. I want to set this column value to current date and time using `PreparedStatement. How do I do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

轮廓§ 2024-12-14 15:12:15

使用 PreparedStatement#setTimestamp() 其中您传递 java.sql.TimestampSystem#currentTimeMillis()

preparedStatement.setTimestamp(index, new Timestamp(System.currentTimeMillis()));
// ...

或者,如果数据库支持它,您也可以调用数据库特定函数来设置当前时间戳。例如,MySQL 为此支持 now()。例如

String sql = "INSERT INTO user (email, creationdate) VALUES (?, now())";

,或者如果数据库支持,请将字段类型更改为自动设置插入/更新时间戳的字段类型,例如 TIMESTAMP 而不是 MySQL 中的 DATETIME

Use PreparedStatement#setTimestamp() wherein you pass a java.sql.Timestamp which is constructed with System#currentTimeMillis().

preparedStatement.setTimestamp(index, new Timestamp(System.currentTimeMillis()));
// ...

Alternativaly, if the DB supports it, you could also call a DB specific function to set it with the current timestamp. For example MySQL supports now() for this. E.g.

String sql = "INSERT INTO user (email, creationdate) VALUES (?, now())";

Or if the DB supports it, change the field type to one which automatically sets the insert/update timestamp, such as TIMESTAMP instead of DATETIME in MySQL.

稚气少女 2024-12-14 15:12:15
conn = getConnection();
String query = "insert into your_table(id, date_column) values(?, ?)";
pstmt = conn.prepareStatement(query);
pstmt.setString(1, "0001");
java.sql.Date date = getCurrentDatetime();
pstmt.setDate(2, date);

其中函数 getCurrentDatetime() 执行以下操作:

public java.sql.Date getCurrentDatetime() {
    java.util.Date today = new java.util.Date();
    return new java.sql.Date(today.getTime());
}
conn = getConnection();
String query = "insert into your_table(id, date_column) values(?, ?)";
pstmt = conn.prepareStatement(query);
pstmt.setString(1, "0001");
java.sql.Date date = getCurrentDatetime();
pstmt.setDate(2, date);

Where the function getCurrentDatetime() does the following:

public java.sql.Date getCurrentDatetime() {
    java.util.Date today = new java.util.Date();
    return new java.sql.Date(today.getTime());
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文