I have two stored procedure that get very similar data from two different databases. One of them gets a field called address3, one only goes up to address2.
is there a way in vb.net to say something like:
if (Exists(row("address3")) Then
'do something with it
end if
reason i ask is because I try to check that field (by doing if row("address3" <> "" even when my second stored procedure doesn't return it and it tells me it doesn't below to the table specified.
Thanks in advance.
is there a way in vb.net to say something like:
if (Exists(row("address3")) Then
'do something with it
end if
reason i ask is because I try to check that field (by doing if row("address3" <> "" even when my second stored procedure doesn't return it and it tells me it doesn't below to the table specified.
Thanks in advance.