在 VB.NET 中过滤日期时,将 select 与 DataTables 一起使用的最安全方法是什么?

发布于 2024-09-07 08:03:00 字数 257 浏览 4 评论 0原文

这将在美国区域设置中工作

table.Select("[Date] = "#04/16/1984#"

这应该在德国区域设置中工作,但它会影响日期格式

table.Select("[Date] = "#16.04.1984#"

对我来说,数据表似乎不理解当前的区域设置。有没有办法以某种格式传递日期,以便它可以在任何区域设置中工作

This will work in US regional settings

table.Select("[Date] = "#04/16/1984#"

This should work in german regional settgins but it thorws dateformat excpetion

table.Select("[Date] = "#16.04.1984#"

To me it seems that datatable does not understand current regional settings. Is there a way to pass date in a certian format, so it will work in any regional setting?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

沫雨熙 2024-09-14 08:03:00

要将日期与 DataTable.Select 一起使用,您需要使用 InvariantCulture Format 并将其括在 #

At Debug:

? TD.Select ("fisap=#9/25/2011 00:00#").长度
20

? TD.Select ("fisap=#9.25.2011 00:00#")(0)(10).ToString
“25/09/2011 0:00:00”-(西班牙语)

? TD.Select ("fisap=#9/25/2011 00:00#")(0)(10)
#9/25/2011# {日期}

To use Dates with DataTable.Select, you need use InvariantCulture Format and enclose it with #

At Debug:

? TD.Select ("fisap=#9/25/2011 00:00#").Length
20

? TD.Select ("fisap=#9.25.2011 00:00#")(0)(10).ToString
"25/09/2011 0:00:00" - (Spanish)

? TD.Select ("fisap=#9/25/2011 00:00#")(0)(10)
#9/25/2011# {Date}

橘香 2024-09-14 08:03:00

我想这取决于底层数据存储日期和时间设置,因为它存储了信息。因此,如果您的客户端应用程序采用其他区域设置格式,请确保将日期字符串格式化为正确的数据库设置。

我认为这应该有帮助:DateTime.Parse Method (String)< /代码>

I guess it depends on the underlying datastore date and time settings, as it is it that stores the information. So, if you're client application is in another regional settings format, make sure to format your date string into the right database settings.

I think this should be helpful: DateTime.Parse Method (String)

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