怎样判断数据表中的某个字段是否为空?

时间:2021-01-14 20:09:59
创建了一个简单的增、删、改的程序,数据表中的字段如下:工号(不能为空),姓名(不能为空),性别(可以为空),所属部门(可以为空),职位(可以为空)
在新增记录时,是在数据表中插入一条空白的记录,然后再空白记录中填入相应的信息,如果填入的信息中,在保存数据时如果输入的工号或姓名为空,可以弹出自定义的提示框。想请教一下如何可以判断数据表中的某个字段不能为空。
如果可以的话希望可以qq上指点一下!qq号:379528676  

6 个解决方案

#1


isnull()

#2


if 工号 is NULL 
then Messagebox('error','工号不能为空')

#3


引用 2 楼 gloomybima 的回复:
if 工号 is NULL 
then Messagebox('error','工号不能为空')

判断是否为空这个我知道!我是想知道怎么获取数据表中的字段。

#4


是获取datawindow控件中的字段要怎么做?

#5


使用datawindow,使用getitemstring,getitemnumber.....获取数据放到变量里,
然后 
if isnull(工号) = true then
  Messagebox('error','工号不能为空')
  return
end if

#6


引用 5 楼 thelittleprince 的回复:
使用datawindow,使用getitemstring,getitemnumber.....获取数据放到变量里,
然后 
if isnull(工号) = true then
  Messagebox('error','工号不能为空')
  return
end if

谢谢!

#1


isnull()

#2


if 工号 is NULL 
then Messagebox('error','工号不能为空')

#3


引用 2 楼 gloomybima 的回复:
if 工号 is NULL 
then Messagebox('error','工号不能为空')

判断是否为空这个我知道!我是想知道怎么获取数据表中的字段。

#4


是获取datawindow控件中的字段要怎么做?

#5


使用datawindow,使用getitemstring,getitemnumber.....获取数据放到变量里,
然后 
if isnull(工号) = true then
  Messagebox('error','工号不能为空')
  return
end if

#6


引用 5 楼 thelittleprince 的回复:
使用datawindow,使用getitemstring,getitemnumber.....获取数据放到变量里,
然后 
if isnull(工号) = true then
  Messagebox('error','工号不能为空')
  return
end if

谢谢!