gpt4 book ai didi

c# - 如何处理来自 SQL Server 的 DBNull DateTime 字段?

转载 作者:行者123 更新时间:2023-11-30 14:20:36 25 4
gpt4 key购买 nike

当我检索具有空 DateTime 字段的行时出现此错误:

'srRow.Closed_Date' threw an exception of type 'System.Data.StrongTypingException'

如何正确处理这些?

最佳答案

您可以在检索值之前检查该列中的空值。

if (!srRow.IsClosed_DateNull())
{
myDate = srRow.Closed_Date;
}

关于c# - 如何处理来自 SQL Server 的 DBNull DateTime 字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1207685/

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