我有这样的整数变量:
Dim valetid as integer
If cvalettype.Checked Then
valetid = RecordID("vtid", "VType_tbl", "Vtype", cmbvalettype.Text)
Else
valetid = 0
End If
如果条件变为其他情况,则 valetid 取 0 值。即在数据库中仅保存为 0。如果条件出现在其他情况下,我想将我的 valetid 在我的数据库中保存为 Null(现在在我的数据库中将 valetid 保存为 0)。在我的数据库 Valetid 数据类型中我声明为 int。我该怎么做?