You need to sign in to do that
Don't have an account?

How to check for a null value
Hi. In my app and querying OpportunityLineItems. It the Line Description field is blank I get an error. How can I check for Nulls? I need something like ado.net uses
if (! rReader.IsDBNull(iDescription))
Thanks,
Rhonda
if (! rReader.IsDBNull(iDescription))
Thanks,
Rhonda
// do something interesting with li.description
}
Rhonda