如何将Joda Time DateTime对象转换为SQL Server格式的String? [英] How do I convert a Joda Time DateTime object into a String in SQL Server format?

查看:93
本文介绍了如何将Joda Time DateTime对象转换为SQL Server格式的String?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用Java中的 Joda-Time 库,并有一个日期和时间存储为 org.joda.time.DateTime object。

I am using the Joda-Time library in Java, and have a date and time stored as an org.joda.time.DateTime object.

如何可靠地将此DateTime对象转换为将由SQL服务器(包括时区)正确解析的String,以便我可以在INSERT SQL语句?

How can I reliably convert this DateTime object into a String that will be parsed correctly by SQL server (including timezone), such that I can use it in an INSERT SQL statement?

推荐答案

使用 java.sql.Timestamp PreparedStatement#setTimestamp( )

ps.setTimestamp(1, new Timestamp(dateTime.getMillis()));

请注意 java.sql.Date 仅存储日期部分,而不存储时间部分。

Note that java.sql.Date stores only the date part, not the time part.

这篇关于如何将Joda Time DateTime对象转换为SQL Server格式的String?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆