日期格式的一部分出错。 [表达式(如果已知)=]

时间:2011-08-14 09:32:39

标签: vb.net

我想在我的数据库'datetime字段中保存日期。 我的变量将日期记为

vrDteTimePprBgn As Date = Today.Date

然后我保存为 drNewRowMCQsAns.Item(“DTE”)= vrDteTimePprBgn

在运行时,我收到错误 日期格式的一部分出错。 [表达式(如果已知)=] 请指教。 感谢

1 个答案:

答案 0 :(得分:0)

试试这个

Public Function SQLDate(ByVal DT As Date)
    Dim FDay As Byte = DT.Day
    Dim FMonth As Byte = DT.Month
    Dim FYear As Integer = DT.Year
    Dim FHour As Byte = DT.Hour
    Dim FMin As Byte = DT.Minute
    Dim FSec As Byte = DT.Second

    SQLDate = FYear & "-" & FMonth & "-" & FDay  & " " & FHour & ":" & FMin & ":" & FSec 
End Function

结果是String格式,但它有效 抱歉我的英文不好