gpt4 book ai didi

asp.net - MySQL 和 ASP.NET (vb) 出现 TIME 自动添加到 DATE 字段的问题

转载 作者:行者123 更新时间:2023-11-29 08:57:00 25 4
gpt4 key购买 nike

我在使用 MySQL 查询返回表中的“上次访问”字段时遇到问题。

最初我有:

select fname, lname, last_visit from patient where isactive = 1 and uid = 1

这在 MySQL 中运行得很好,但是一旦我的 ASP.NET 应用程序执行查询,它就会将时间字段也添加到日期区域。因此,2011-12-12 变为 12/12/2011 12:00:00 AM

我也尝试过,没有任何改善:

select fname, lname, DATE(last_visit) as last_visit from patient where isactive = 1 and uid = 1 order by lname

我该如何解决这个问题?

最佳答案

.NET DateTime 对象始终具有 Time 组件。在您的应用程序中,您可以忽略它。

Dim myDate As New DateTime(2011,12,12)

Dim dateAndTime As String = myDate.ToString() 'Prints 12/12/2011 12:00:00 AM

Dim onlyDate As String = myDate.ToShortDateString() 'Prints 12/12/2011

关于asp.net - MySQL 和 ASP.NET (vb) 出现 TIME 自动添加到 DATE 字段的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9690639/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com