String.IsNullOrWhiteSpace(valuefromDB) throws error if valuefromDB is dbnull.value

Is that correct??

I thought of this function will also handles the dbnull.value

link|improve this question

17% accept rate
use isNothing(valuefromDB). – Emaad Ali Sep 20 '11 at 13:01
feedback

3 Answers

up vote 0 down vote accepted

If you had Option Strict On your code would never have compiled, because the IsNullOrWhiteSpace method on string accepts a string type, DBNull isn't a string type (it's DBNull), and at a guess your valuefromDB variable is of type Object.

The IsNull in the name IsNullOrWhiteSpace is actually referring to the CLRs null which in VB is Nothing, not DBNull

You can either check for both DBNull and IsNullOrWhiteSpace or as pointed out by Emaad Ali, use the VB function IsNothing.

Hope this helps

link|improve this answer
feedback

DBNull.Value does not equal null.

Try something like:

If Not DbNull.Value.Equals(valuefromDB)...
link|improve this answer
feedback

Yes is correct..

From msdn:

Indicates whether a specified string is Nothing, empty, or consists only of white-space characters.

Nothing is not null, so your string can be nothing or empty, but a dbnull is another different value for it :).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.