SqlDbType.DateTime 不存储秒吗?

发布于 2024-07-26 12:48:41 字数 270 浏览 4 评论 0原文

using System.Data;
using System.Data.SqlClient;

我正在使用 SqlDbType.DateTimeSqlCommand cmd.Parameters 在数据库中创建一条记录。

秒数未存储在数据库中。 数据库中的字段是日期时间类型。

我是否需要做一些特殊的事情来节省时间,或者 SqlDbType.DateTime 不这样做吗?

using System.Data;
using System.Data.SqlClient;

I am using a SqlCommand cmd.Parameters of SqlDbType.DateTime to create a record in the database.

Seconds are not being stored in the database. The field in the db is of type datetime.

Do I need to do something special to save seconds, or does SqlDbType.DateTime not do that?

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

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

发布评论

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

评论(2

谁的年少不轻狂 2024-08-02 12:48:41

SqlDbType.DateTime 映射到 SQL 的 DATETIME 数据类型,精确到 3.33 毫秒。 听起来您可能会将值放入 SQL Server 中的 SMALLDATETIME 字段中,该字段仅精确到分钟。 SqlDbType.DateTime 参数是与 DATETIMESMALLDATETIME 一起使用的正确选择。

SqlDbType.DateTime maps to SQL's DATETIME datatype, which is accurate to 3.33 milliseconds. It sounds like you may be putting your values into a SMALLDATETIME field in SQL server, which is only accurate to the minute. SqlDbType.DateTime parameter would be the correct choice for use with both DATETIME and SMALLDATETIME.

甜柠檬 2024-08-02 12:48:41

SQL Server DateTime 以毫秒精度存储时间(不太正确,它四舍五入为 0.003 .007 等)。

然而,Smalldatetime 存储的日期使得秒始终为 :00。 您可能使用过smalldatetime。

http://msdn.microsoft.com/en-us/library/ms182418。 ASPX

SQL Server DateTime stores time with millisecond accuracy (not quite right it rounds to .003 .007 etc)

Smalldatetime, however, stores dates such that the seconds are always :00. You have probably used smalldatetime.

http://msdn.microsoft.com/en-us/library/ms182418.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文