数据库安全的日期/时间字符串?
哪种格式的日期/时间字符串被认为是跨平台、跨数据库、通用安全的?
在 MySQL、SQLite 2 和 SQLite 中使用此 YYYY-MMM-DD HH:MM:SS
是否被认为是安全的? 3、MsSQL等常见数据库?
像 2010-Jul-12 12:00:00pm
这样的内容怎么样?
Which format of a date/time string would be considered cross-platform, cross-database, universal safe?
Would this YYYY-MMM-DD HH:MM:SS
be considered safe to use in MySQL, SQLite 2 & 3, MsSQL and other common databases?
How about something like 2010-Jul-12 12:00:00pm
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
只要有可能,您应该使用真实的日期/时间类型传递和存储日期。如果文化发生变化(也可能在不同的数据库平台上),字符串通常会引起问题。
如果您的语言或数据库库允许您在数据库查询中使用强类型参数,那么这将是最安全的方法。如果您对列使用日期/时间类型并使用您语言的日期/时间类型传递值,则库将确保正确处理您的日期。
Whenever possible, you should pass and store dates using a real date/time type. Strings will often cause problems if the culture changes (and probably on different database platforms, too).
If your language or database library allows you to use strongly typed parameters in your database queries, that would be the safest way to do this. If you use a date/time type for your columns and pass the values using your language's date/time type, the library will make sure that your dates are handled correctly.
您可以选择一个已定义的标准,例如日期和时间的 ISO 标准。它非常通用,易于使用和理解,作为一个定义的标准,您可以只说“所有日期时间必须是 ISO 8601”,然后就可以完成。不用担心语言环境或文化混乱。
You could pick a defined standard, such as the ISO standard for date and times. It's pretty universal and easy to use and understand, and as a defined standard you can just say "all datetimes must be ISO 8601" and be done with it. No worries about locale or cultural confusion.
您没有真正的“安全”日期时间。这一切都取决于文化,
英国是 DD/MM/YYYY HH:MM:ss
US 是 MM/DD/YYYY HH:MM:ss 或任何不完全确定它是否确实是或不是的东西,但它是不同的。
我会坚持你的“文化”,并在整个代码中保持一致,这样未来的开发人员就可以轻松地阅读你的代码,并弄清楚你对数据和时间有什么样的疯狂约定。
希望这有帮助:)
You don't have really have a "safe" DateTime. It all depends on Cultures,
UK is DD/MM/YYYY HH:MM:ss
US is MM/DD/YYYY HH:MM:ss or whatever not entirely sure if it actually is or not but nontheless it is different.
I would just stick with your "culture", and be consistent throughout you code so furture developers can easilly read you code with figuring out what kind of crazy convention you have for your data and time.
Hope this helps :)
您应该使用 ISO 标准 - YYYY-MM-DDThh:mm:ss[.mmm]
或作为替代 YYYYMMDD。
http://msdn.microsoft.com/en-us/library/ms187819。 ASPX
You should use the ISO standard - YYYY-MM-DDThh:mm:ss[.mmm]
Or as an alternative YYYYMMDD.
http://msdn.microsoft.com/en-us/library/ms187819.aspx