ASP .NET MySql 默认设置日期格式

发布于 2024-10-11 02:30:16 字数 203 浏览 5 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(2

停滞 2024-10-18 02:30:16

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.

紫轩蝶泪 2024-10-18 02:30:16

在 MS SQL 中,您使用 DATEFORMAT:

declare @MyTable Table([date] datetime)

SET DATEFORMAT ymd
Insert into @MyTable values ('14/1/2')
select * from @MyTable

通常,在 DATEFORMAT 中,您可以按照您需要的任何顺序放置“y”、“m”和“d”

In MS SQL you use DATEFORMAT:

declare @MyTable Table([date] datetime)

SET DATEFORMAT ymd
Insert into @MyTable values ('14/1/2')
select * from @MyTable

Generally, in DATEFORMAT you place 'y', 'm' and 'd' in any sequence you need

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