SQL Server DateTime Accept NULL
本文关键字:NULL Accept DateTime Server SQL | 更新日期: 2023-09-27 17:55:51
我试图使我的代码尽可能紧凑。
使用 Microsoft SQL Server, .NET 2.0
我的数据库中有一个接受空值的日期字段
LeaseExpiry(datetime, null)
我获取文本框的值并将其转换为日期时间。
DateTime leaseExpiry = Convert.ToDateTime(tbLeaseExpiry.Text);
INSERT_record(leaseExpiry);
我遇到的问题是表单是否已提交并且文本框为空。我得到这个错误:
字符串未被识别为有效的日期时间。
如何设置我的代码,以便在文本框为空时,使用 NULL
在数据库中创建行?
我尝试将我的变量初始化为 NULL,但在 Visual Studio 中出现错误
DateTime leaseExpiry = null;
无法将 null 转换为"System.DateTime",因为它是不可为空的值类型。
这是数据访问层,如果有帮助的话
public string INSERT_record(DateTime leaseExpiry)
{
//Connect to the database and insert a new record
string cnn = ConfigurationManager.ConnectionStrings[connname].ConnectionString;
using (SqlConnection connection = new SqlConnection(cnn))
{
string SQL = string.Empty;
SQL = "INSERT INTO [" + dbname + "].[dbo].[" + tblAllProperties + "] ([LeaseExpiry]) VALUES (@leaseExpiry);
using (SqlCommand command = new SqlCommand(SQL, connection))
{
command.Parameters.Add("@leaseExpiry", SqlDbType.DateTime);
command.Parameters["@leaseExpiry"].Value = leaseExpiry;
}
try
{
connection.Open();
command.ExecuteNonQuery();
return "Success";
}
catch (Exception ex)
{
return ex.Message;
}
}
}
谢谢
事实上,DateTime
不能null
。但是:DateTime?
可以。另请注意,在参数上,null
表示"不发送";您将需要:
public string INSERT_record(DateTime? leaseExpirey)
{
// ...
command.Parameters.Add("@leaseExpirey", SqlDbType.DateTime);
command.Parameters["@leaseExpirey"].Value =
((object)leaseExpirey) ?? DBNull.Value;
// ...
}
尝试使用可为空的 DateTime 和 TryParse()
DateTime? leaseExpirey = null;
DateTime d;
if(DateTime.TryParse(tbLeaseExpiry.Text, out d))
{
leaseExpirey = d;
}
INSERT_record(leaseExpirey);
你可以leaseExpirey
设为可为空的DateTime
- 即 DateTime? leaseExpirey
然后你可以说:
DateTime? leaseExpirey;
if (!string.IsNullOrEmpty(tbLeaseExpiry.Text.Trim()))
leaseExpirey = Convert.ToDateTime(tbLeaseExpiry.Text);
INSERT_record(leaseExpirey);
您还需要更改INSERT_record
以接受DateTime?
参数而不是DateTime
。
你应该使用DateTime.MinValue
,因为日期时间永远不会null
。