how to handle null values

  • Thread starter Thread starter psycho
  • Start date Start date
P

psycho

how should i hanle null values returned by the datareader
i am using OleDbDataReader for accessing access database.
 
Typically you would first check if the value is null with IsDbNull method.
If it is not, you can get the value with one of the GetXxx methods
 
Back
Top