SqlDbType.DateTime 不存储秒吗?
using System.Data;
using System.Data.SqlClient;
我正在使用 SqlDbType.DateTime
的 SqlCommand 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SqlDbType.DateTime
映射到 SQL 的DATETIME
数据类型,精确到 3.33 毫秒。 听起来您可能会将值放入 SQL Server 中的SMALLDATETIME
字段中,该字段仅精确到分钟。SqlDbType.DateTime
参数是与DATETIME
和SMALLDATETIME
一起使用的正确选择。SqlDbType.DateTime
maps to SQL'sDATETIME
datatype, which is accurate to 3.33 milliseconds. It sounds like you may be putting your values into aSMALLDATETIME
field in SQL server, which is only accurate to the minute.SqlDbType.DateTime
parameter would be the correct choice for use with bothDATETIME
andSMALLDATETIME
.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