HOW TO: Make a Typed DataSet Return a Default Value Instead of DBNull by Using Visual C# .NET (318048)



The information in this article applies to:

  • Microsoft ADO.NET (included with the .NET Framework)
  • Microsoft ADO.NET (included with the .NET Framework 1.1)
  • Microsoft Visual C# .NET (2002)
  • Microsoft Visual C# .NET (2003)

This article was previously published under Q318048
For a Microsoft Visual Basic.NET version of this article, see 318039.

IN THIS TASK

SUMMARY

This step-by-step article describes how to change the XML Schema file to make a typed DataSet return a default value instead of DBNULL.

Visual Studio .NET may return an exception if the value of a DataRow is DBNULL, so you must handle the exception properly for values that are DBNULL. If you modify the default value for DBNULL fields, you can retrieve a value you specify other than DBNULL.

back to the top

Requirements

The following list outlines the recommended hardware, software, network infrastructure, and service packs that you need:
  • Microsoft Windows XP, Windows 2000, or Windows NT 4.0 Service Pack 6a
  • Microsoft Data Access Components (MDAC) 2.6 or later
  • Microsoft Visual Studio .NET
This article assumes that you are familiar with the following topics:
  • Visual C# .NET syntax
  • ADO.NET syntax
  • Windows Forms
back to the top

Create the Project

  1. Open Visual Studio .NET.
  2. Create a new Windows application in Visual C# .NET. Form1 is added to the project by default.
  3. Place a Command button on Form1. Change the Name property of the button to btnTest.
  4. Use the using statement on the System.Data.SqlClient namespaces so that you are not required to qualify declarations in those namespaces later in your code. Add the following code to the General Declarations section of Form1:
    using System.Data.SqlClient;
  5. Create a typed DataSet using the Customers table in the Northwind database.
  6. Paste the following code in the btnTest_Click event:
    sqlDataAdapter1.Fill(dataSet11,"customers");
    foreach(DataSet1.CustomersRow crow in dataSet11.Customers)
    {
       if (crow.Region == "-1")
    	Console.WriteLine("DBNULL");
    }
  7. Save your project.
back to the top

Test the Project

  1. Run the project and then click btnTest. The following error message appears.
    An unhandled exception of type 'System.Data.StrongTypingException' occurred in nullvaluedbnull.exe

    Additional information: Cannot get value because it is DBNull.
  2. Stop the program and open the DataSet1.xsd file from Solution Explorer.
  3. In the DataSet1.xsd file, add the namespace codegen in the namespace declaration. Paste the following line of code for the codegen namespace immediately after the targetNamespace value:
    xmlns:codegen="urn:schemas-microsoft-com:xml-msprop"
  4. Modify the element Region to reflect the following code:
    <xs:element name="Region" codegen:nullValue="-1" type="xs:string" minOccurs="0" />
  5. Save the DataSet1.xsd file. If you are prompted to reload the file, click Yes.
  6. Run the project and then click btnTest. The exception does not occur. Note that the DBNULLs that are printed in the output window.
back to the top

Pitfalls

  • The nullValue must match the type of the element; for example, use nullValue="0" to return 0 for null integer fields.
  • The nullValue is only for retrieving data. You cannot use the nullValue to assign to a field.
back to the top

REFERENCES

Using Annotations with a Typed DataSet

back to the top

Modification Type:MajorLast Reviewed:9/4/2003
Keywords:kbHOWTOmaster KB318048 kbAudDeveloper