What is the difference between “Null” and “Nothing” in VB6?

后端 未结 3 2005
悲哀的现实
悲哀的现实 2020-12-17 20:39

I have a recordset like this:

Dim rs as Recordset
Set rs as New Recordset

\'... a lot of coding ...

if Err.Number <> 0 Then \' oops, something gone w         


        
3条回答
  •  醉酒成梦
    2020-12-17 21:26

    You can try as follow:

    a = "SELECT SBio.biosrno,YearlyCharges.adnum,Name,sName
    FROM SBio RIGHT JOIN YearlyCharges ON SBio.biosrno=YearlyCharges.adnum
    WHERE  (SBio.biosrno IS  NULL );"
    

提交回复
热议问题