Android Question RDC : How to capture Null Value in DBResult?

incendio

Well-Known Member
Licensed User
Longtime User
Hi guys,

After executing command in request manager, to get return values from DBResult, I use this codes
B4X:
For Each records() As Object In result.Rows
   var1 = records(0)
   var2= records(1)
Next

That codes works well if it is not null, but raised error when null. How to check if values is null or not?

Thanks in advance.
 
Top