vote up 3 vote down star
1

Does any one have a preference on how to check if a value is DBNull? I've found these two statements give me the results I want, but just wondering if there's a preference?

if (any is System.DBNull) ...

same as: if (any == System.DBNull.Value) ...

Thanks!

Ricardo.

flag

50% accept rate

8 Answers

vote up 2 vote down check
if (any == System.DBNull.Value) ...

I prefer that one, simply because I read that as comparing values, not types.

link|flag
vote up 5 vote down

I tend to use

if (DBNull.Value.Equals(value)) {
    //
}

or

if (Convert.IsDBNull(value)) {
    //
}
link|flag
eww, too much like java – davr Sep 19 '08 at 21:40
vote up 2 vote down

is does not use reflection as Kevlar623 says. It maps to the isinst operation in IL. On that level, comparing performance is downright silly, unless you're working on a missile guidance system.

I use value is DBNull. It just sounds right and as a paranoid developer, I can't trust that the only value ever in existence is DBNull.Value. Bugs happen.

link|flag
vote up 1 vote down

if you're in c#, you should use ==; is uses reflection which is more expensive to compute, especially since there's only ever one instance of System.DBNull.

link|flag
vote up 1 vote down

"syntacies", I suppose. Probably not going to come up a lot.

link|flag
vote up 0 vote down

A missile guidance system on .NET? Thats gonna be good for the missle east since most gonna MISS .. MISSiles :)

link|flag
vote up -1 vote down

I like the "is System.DBNull" more because I hate the idea of comparing something to NULL and having it be true. Many other syntaxes (what the hell is the plural of that?) would have anything==NULL return NULL.

I understand that there's DBNull.Value for a reason. I know. I'm listing my PREFERENCE :)

link|flag
vote up -1 vote down

This is a good example of form follows function. Whichever one executes more efficiently is the way to go. What it looks like, reads like, or bad names it calls you is irrelevant. Use the language efficiently, don't mold the language into a new one.

link|flag

Your Answer

Get an OpenID
or

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