intTypePromotion=1
zunia.vn Tuyển sinh 2024 dành cho Gen-Z zunia.vn zunia.vn
ADSENSE

Replacing Null Values in a Strongly Typed DataSet

Chia sẻ: Bui Tuan | Ngày: | Loại File: PDF | Số trang:4

96
lượt xem
5
download
 
  Download Vui lòng tải xuống để xem tài liệu đầy đủ

[ Team LiB ] Recipe 2.19 Replacing Null Values in a Strongly Typed DataSet Problem When a column in a database has a null value, you want the value in the DataSet to be a string indicating that no value is available. Solution Use annotations in the XML schema to control the handling of null values.

Chủ đề:
Lưu

Nội dung Text: Replacing Null Values in a Strongly Typed DataSet

  1. [ Team LiB ] Recipe 2.19 Replacing Null Values in a Strongly Typed DataSet Problem When a column in a database has a null value, you want the value in the DataSet to be a string indicating that no value is available. Solution Use annotations in the XML schema to control the handling of null values. The sample uses one XSD file: CategoriesDS_AnnotatedNull.xsd The schema used to generate the strongly typed DataSet. The schema is annotated so the null Description values are replaced with the string "- no description available -". The annotations are marked in bold in Example 2-25. Example 2-25. File: TypedDataSets\CategoriesDS_AnnotatedNull.xsd
  2. type="xs:int" /> The sample code creates a strongly typed DataSet based on the Categories table in Northwind. The user specifies whether the one based on the default or annotated schema file is used. In either case, data is loaded into the DataSet. A row is added to the Categories table with a Description value of null. The data in the table is written to the text box on the form to demonstrate the effect of the schema annotation on null column values. The C# code is shown in Example 2-26. Example 2-26. File: TypedDataSetNullsForm.cs // Namespaces, variables, and constants using System; using System.Configuration; using System.Text; using System.Data; using System.Data.SqlClient; // Table name constants private const String CATEGORIES_TABLE = "Categories";
  3. // . . . StringBuilder result = new StringBuilder( ); // Create the DataAdapter. SqlDataAdapter da = new SqlDataAdapter("SELECT * FROM Categories", ConfigurationSettings.AppSettings["Sql_ConnectString"]); if (annotatedRadioButton.Checked) { // Create the typed DataSet without null annotation. CategoriesDS_AnnotatedNull ds = new CategoriesDS_AnnotatedNull( ); // Fill the Categories table within DataSet. da.Fill(ds, CATEGORIES_TABLE); // Add a row with a null Description. ds.Categories.AddCategoriesRow("New Category", null); result.Append("Annotated Nulls" + Environment.NewLine + Environment.NewLine); // Iterate over the rows collection and display columns. foreach(CategoriesDS_AnnotatedNull.CategoriesRow row in ds.Categories) { // Get the Description. String description = row.Description; // Note that the null Description is replaced. result.Append(row.CategoryID + "\t" + row.CategoryName + "\t" + description + Environment.NewLine); } } else { // Create the typed DataSet annotated for nulls. CategoriesDS ds = new CategoriesDS( ); da.Fill(ds, CATEGORIES_TABLE); // Add a row with a null Description. ds.Categories.AddCategoriesRow("New Category", null); result.Append("Default" + Environment.NewLine + Environment.NewLine); // Iterate over the rows collection and display columns. foreach(CategoriesDS.CategoriesRow row in ds.Categories)
  4. { // Use IsNull method or StrongTypingException will // result when null row.Description is accessed. String description = row.IsDescriptionNull( ) ? "NULL" : row.Description; // Note that the null Description is not replaced. result.Append(row.CategoryID + "\t" + row.CategoryName + "\t" + description + Environment.NewLine); } } resultTextBox.Text = result.ToString( ); Discussion Annotations to XSD schemas used to generate strongly typed DataSet objects are discussed in detail in Recipe 2.18. [ Team LiB ]
ADSENSE

CÓ THỂ BẠN MUỐN DOWNLOAD

 

Đồng bộ tài khoản
2=>2