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 have a config.xml file that contains a SQL query. The query will end up getting read and performed in c#. However, I need to know how to write the query contained inside the XML element. The problem is that the query uses <= in a WHERE statement. The '<' part of the query causes the XML to think it is supposed to esacpe the element, I think. How can i include this basic select statement in the XML file? I noticed > works fine. Obviously, I could swap the order of the comparison, but I want to know how I can specifically include < please.

    <?xml version="1.0" encoding="utf-8" ?>
<root>
  <Connections>
   <Connection>
      <Source>Data Source=XXX-XXX; Initial Catalog=MyData;Integrated Security=True</Source>
      <Query>Select * FROM Info WHERE EffectiveDate <= GETDATE() </Query>
   </Connection>
  </Connections>
</root>
share|improve this question

2 Answers

up vote 2 down vote accepted

Use a CDATA block. Then you wouldn't have to encode your query.

For example:

<Query><![CDATA[
Select * FROM Info WHERE EffectiveDate <= GETDATE()   
]]></Query>
share|improve this answer
this sounds like the best solution, but when i added <![CDATA[ at the beginning and ]] at the end of the query, i now receive the error: Unexpected end of file while parsing CDATA has occurred. What am I missing? – user1029770 Dec 21 '12 at 16:38
Nevermind, I missed the > after the ]] at the end. Thanks!!! – user1029770 Dec 21 '12 at 16:43

You could encode the < character in the config file &lt; and decode it for use.

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.