有人可以幫我修復我的代碼我試圖通過除了_dtSWO的函數在SQL服務器中的空值。使一個日期爲空
如果我設置了_dtSWO = Nothing,它會返回#12:00:00 AM#,這會引發異常。該字段在SQL服務器中可以爲空我只希望它返回空白
Dim _swoDate As String = udSWOReceivedDateDateEdit.Text
Dim _dtSWO As Date
If _swoDate <> "" Then
_dtSWO = Date.Parse(udSWOReceivedDateDateEdit.Text)
Else
'THIS DOESNT WORK
_dtSWO = Nothing
End If
您可能還想捕獲空字符串大小寫;而不是比較空字符串,我會使用'String.IsNullOrEmpty()'。 – tdammers 2010-09-02 16:03:27