Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to do something similar to what's described here, but with nullable types.

http://www.csharp-station.com/Tutorials/Lesson23.aspx

int availableUnits = unitsInStock ?? 0;

In VB, it would be this:

Dim availableUnits As Int32 = If(unitsInStock, 0)

However I'm working with db columns, which could be DbNull, and nullable types, which can be Nothing (which is different to DbNull). If a column is DbNull, I want to return Nothing, otherwise return the value. For eg:

Dim availableUnits As Int32? = If(myDataReader("UnitsInStock").Value, Nothing)

The error I'm getting is "Specified cast is not valid" but I'm not sure why. I've tried this as well:

Dim availableUnits As Int32? = If(isDbNull(myDataReader("UnitsInStock").Value), myDataReader("UnitsInStock").Value, Nothing)

Which is messy and just results in the same error. The only thing that works is this:

Dim availableUnits As Int32?
If isDbNull(myDataReader("UnitsInStock").Value) Then
  availableUnits = myDataReader("UnitsInStock").Value
Else
  availableUnits = Nothing
End If

Which is just silly. Is there a better way of getting nullable db values into nullable variables that I'm not aware of?

share|improve this question

3 Answers

up vote 1 down vote accepted

It is silly, but you have to cast the Nothing when you set it:

Dim availableUnits As Int32? = If(myDataReader.IsDBNull("UnitsInStock"), _
                                  CType(Nothing, Int32?), _
                                  myDataReader.GetInt32("UnitsInStock"))
share|improve this answer
Very true, and very weird, just discovered this after an hour of head scratching. Looks like this is about as simple as it gets. Many thanks. – ingredient_15939 Dec 9 '11 at 4:42
This problem arises because Nothing in VB does not necessarily mean null. See this question for details: stackoverflow.com/q/4147277/87698 – Heinzi Dec 9 '11 at 8:41
@Heinzi - I believe the same is true of C#, requiring the cast, i.e., (Int32?)null. – AJ. Dec 9 '11 at 17:47
@AJ: Good point. – Heinzi Dec 10 '11 at 10:40

If using DataSets instead of DataReaders is an option for you, the DataRow.Field method knows how to handle Nullable variables properly:

Dim availableUnits = myDataRow.Field(Of Int32?)("UnitsInStock")
share|improve this answer
Thanks, that's definitely handy to know. In this case though, need to work with the datareader. – ingredient_15939 Dec 9 '11 at 2:16

You should check if the DataReader has a value with IsDBNull:

While myDataReader.Read
    Dim unitsInStock As Nullable(Of Int32) 'assuming the "unitsInStock" is the first column
    unitsInStock = If(myDataReader.IsDBNull(0), Nothing, myDataReader.GetInt32(0))
End While
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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