incendio Well-Known Member Licensed User Longtime User May 16, 2014 #1 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.
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.
BPak Active Member Licensed User Longtime User May 16, 2014 #2 If Not (records(0) = Null) then var1 = records(0) Upvote 0