我需要你的帮助我想在禁用datetimepicker时向我的数据库发送null并在启用时发送日期但是我不知道怎么办呢
Function insertarPersona(ByVal Fecha_de_Precla As Date) As String
Dim salida As String = "Se ha insertado correctamente"
Try
cmd = New SqlCommand("Insert into pruebasop(Fecha_de_Precla)values ('" & Fecha_de_Precla & "')", cn)
cmd.ExecuteNonQuery()
我想根据chekbox是否启用来插入数据,对不起我的英文不好
答案 0 :(得分:0)
使用参数将值设置为DBNull.Value。当然,只有当您的数据表字段(Fecha_de_Precla)接受NULL值时,这才有效。
node-inspector
为参数使用正确的DataType非常重要。检查如何定义表字段并使用正确的SqlDbType。