ASP .NET MySql 默认设置日期格式
我正在使用 ASP .NET,并从 MySQL S2005 检索数据。
我正在使用几个 Jquery Datepickers 并将日期格式设置为:“yy/mm/dd”。
但是,当日期选择器的输入字段填充了数据库中存储的日期时,它 根据系统语言使用不同的格式。
如何指定默认格式?我应该在数据库上还是直接在应用程序上指定?
谢谢。
I'm using ASP .NET and I'm retrieving data from a MySQL S2005.
I'm using several Jquery Datepickers and I set the dateformat to: "yy/mm/dd".
However, when the datepicker's input field is filled with a date stored in the DB, it
uses different formats, depending on the language of the system.
How can I specify a default format? Should I specify this on the DB or directly on the app?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Mysql 使用 yyyy-mm-dd。只需在插入表之前将字符串转换为该格式即可。如果您说的是 MySQL 2005,而您指的是 MS SQL 2005,那么您可能需要使用 DATEPART 提取日期数据。微软存储日期的方式很奇怪。如果您只提取日期字段本身的值,则无法确定将从数据库中提取什么内容。
查询
DATEPART(dd,日期字段)
DATEPART(yyyy,日期字段)
DATEPART(毫米,日期字段)
然后将其组合在一起,只要你想要。
Mysql uses yyyy-mm-dd. Just convert the string to that format before inserting into the table. If it was a typo when you said MySQL 2005 and you meant MS SQL 2005, then you will probably need to pull the date data with DATEPART. Microsoft stores their dates wierd. There's no telling what you will pull out of the database if you just pull the value of the datefield itself.
Query for
DATEPART ( dd, datefield )
DATEPART ( yyyy, datefield )
DATEPART ( mm, datefield)
then put it together however you want.
在 MS SQL 中,您使用 DATEFORMAT:
通常,在 DATEFORMAT 中,您可以按照您需要的任何顺序放置“y”、“m”和“d”
In MS SQL you use DATEFORMAT:
Generally, in DATEFORMAT you place 'y', 'm' and 'd' in any sequence you need