Members

Technology Zones

Articles

Hosted By

MaximumASP

Info

Avoid xml element if value is null

Last post 04-22-2008 12:08 PM by D'Scouser. 1 replies.
Page 1 of 1 (2 items)
Sort Posts: Previous Next
  • 03-29-2008 1:53 AM

    • yr
    • Top 500 Contributor
    • Joined on 06-01-2007
    • United States
    • Member
    • Points 345

    Avoid xml element if value is null

    Hi,

    I am writing xml file from sql server database(Stored Proc) using Xml text writer class ,i

    My query is ,If database  datacolumn value has" null" then ,i dont want to show null element in xml file

    means i dont need particular end element in xml file

     

    example:

    1.<ID>1908</ID>
      <LOCALID>0123456789</LOCALID>
      <Sname>1660</Sname>
      <State>NJ</State>
      <Zip>30824</Zip> 

    If State value is null

    2.<ID>1908</ID>
      <LOCALID>0123456789</LOCALID>
      <Sname>1660</Sname>
        <Zip>30824</Zip>

    I wanted out put like 2 xml file.Please suggest this is very urgent to me.

    Thanks in advance!!!.

    • Post Points: 10
  • 04-22-2008 12:08 PM In reply to

    • D'Scouser
    • Top 150 Contributor
    • Joined on 09-20-2007
    • United Kingdom
    • Fanatic Member
    • Points 1,015

    Re: Avoid xml element if value is null

    I came here looking for some help with Xml, although I don't think that's going to happen any time soon.

    Have you tried typing your output out using a schema, because you can then set a default value. The only problem here is, your xml output must be very strict and follow the schema or everything will fail.

    • Post Points: 5
Page 1 of 1 (2 items)