<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>www.xmlsearch.info</title>
	<atom:link href="http://www.xmlsearch.info/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.xmlsearch.info</link>
	<description></description>
	<lastBuildDate>Sat, 16 Jul 2011 00:00:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Data Type And Data Binding, What&#8217;s The Difference</title>
		<link>http://www.xmlsearch.info/2011/07/16/data-type-and-data-binding-whats-the-difference/</link>
		<comments>http://www.xmlsearch.info/2011/07/16/data-type-and-data-binding-whats-the-difference/#comments</comments>
		<pubDate>Sat, 16 Jul 2011 00:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false">http://www.xmlsearch.info/&#038;p=9</guid>
		<description><![CDATA[Data type is the actual classification of data that is to be entered into a database. This classification usually follows one of a few forms; integer, floating-pint, or character. The integer is a whole number and has not fractional value. The floating-point is a number that has a decimal point. The character is just readable [...]]]></description>
			<content:encoded><![CDATA[<p>Data type is the actual classification of data that is to be entered into a database. This classification usually follows one of a few forms; integer, floating-pint, or character. The integer is a whole number and has not fractional value. The floating-point is a number that has a decimal point. The character is just readable text.</p>
<p>Data binding is the operating technique that actually binds two data or information sources together. Binding is the idea of synchronizing. It is usually binding with<span id="more-9"></span> two data or information sources with two different types. XML data binding is an example of data binding and UI data binding is another. XML data binding is just the means to read the actual XML doc as an object. UI data binding is a software design pattern for developing GUI apps.</p>
<p>The major difference between the two is that one is that data type seems to be the actually driver of the information and data binding is the interaction between the information. Source information has to first be recognized or decoded before it is able to be used in any manageable way. The reality is that the two work together to allow the end-user to be able to operate the system.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xmlsearch.info/2011/07/16/data-type-and-data-binding-whats-the-difference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Control Your Charcters, For Better Understanding</title>
		<link>http://www.xmlsearch.info/2011/07/15/control-your-charcters-for-better-understanding/</link>
		<comments>http://www.xmlsearch.info/2011/07/15/control-your-charcters-for-better-understanding/#comments</comments>
		<pubDate>Fri, 15 Jul 2011 00:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false">http://www.xmlsearch.info/&#038;p=8</guid>
		<description><![CDATA[When we open an XML file, we see human-readable text. Thanks to Unicode, a character set used to represent nearly every character written, XML can contain virtually everything. Don&#8217;t forget about special characters and control characters, however. Don&#8217;t enter them directly into XML. Forgetting about them can make your XML unusable or even make your [...]]]></description>
			<content:encoded><![CDATA[<p>When we open an XML file, we see human-readable text. Thanks to Unicode, a character set used to represent nearly every character written, XML can contain virtually everything. Don&#8217;t forget about special characters and control characters, however. Don&#8217;t enter them directly into XML. Forgetting about them can make your XML unusable or even make your application crash.</p>
<p>Special characters, such as less-than and greater-than signs (&#8216;<' and '>&#8216;), need to be escaped. How do we escape a<span id="more-8"></span> character? We use an entity.</p>
<p>Entities are easily viewable when we read an XML file. Entities always start with an ampersand (&#038;) and end with a semicolon (;). For example, insert a less-than and greater-than signs by entering &#8220;&amp;lt;&#8221; and &#8220;&amp;gt;&#8221; respectively. Insert an ampersand by entering &#8220;&amp;amp;&#8221;. Entities are instantly changed into the right character when it is read by your application. </p>
<p>When converting data from other kinds of files, watch out for control characters. Control characters were sometimes used to define data fields, but they can crash your application. Worse, control characters aren&#8217;t usually viewable by the human eye. But, once you find them, you can simply delete them. If they are needed, delete the character, then enter &#8216;&amp;number;&#8217;. Replace &#8216;number&#8217; with the Unicode number for the character.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xmlsearch.info/2011/07/15/control-your-charcters-for-better-understanding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XML, XSL, DTD&#8217;s And Other Abbreviations I Don&#8217;t Know</title>
		<link>http://www.xmlsearch.info/2011/07/13/xml-xsl-dtds-and-other-abbreviations-i-dont-know/</link>
		<comments>http://www.xmlsearch.info/2011/07/13/xml-xsl-dtds-and-other-abbreviations-i-dont-know/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 00:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false">http://www.xmlsearch.info/&#038;p=7</guid>
		<description><![CDATA[Abbreviations are all over the place when dealing with computers. You are probably wondering what XML, XSL, DTD and the rest of these abbreviations mean. Let&#8217;s have a quick rundown of some of them. XML stands for eXtensible Markup Language. It is a way of describing information in human-readable form. You can describe any information [...]]]></description>
			<content:encoded><![CDATA[<p>Abbreviations are all over the place when dealing with computers. You are probably wondering what XML, XSL, DTD and the rest of these abbreviations mean. Let&#8217;s have a quick rundown of some of them.</p>
<p>XML stands for eXtensible Markup Language. It is a way of describing information in human-readable form. You can describe any information with it by use of tags. It is called a markup language because you wrap text (or other information) with keywords that computer applications interpret.</p>
<p>To make<span id="more-7"></span> sure XML correctly describes the intended information, a DTD, or Document Type Definition is used. DTD&#8217;s are referenced from inside the XML. DTD&#8217;s are read by applications that use XML. If XML is driving, a DTD is the rule book we use to drive safely.</p>
<p>DTD&#8217;s tell applications what is good data. XSL, on the other hand, helps define how XML should look to someone who wants to look at the XML directly. For example, if you were to click a link to an XML file on the web in a web browser, the DTD helps the browser know the XML is correct. Then, the browser looks at any XSL associated with the XML (an XSLT file). So raw XML turns into a web page, a menu, or nearly anything else.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xmlsearch.info/2011/07/13/xml-xsl-dtds-and-other-abbreviations-i-dont-know/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Watch Your Syntax, Keep It Clean</title>
		<link>http://www.xmlsearch.info/2011/07/10/watch-your-syntax-keep-it-clean/</link>
		<comments>http://www.xmlsearch.info/2011/07/10/watch-your-syntax-keep-it-clean/#comments</comments>
		<pubDate>Sun, 10 Jul 2011 00:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false">http://www.xmlsearch.info/&#038;p=5</guid>
		<description><![CDATA[Many programmers take what they do very seriously. Many also enjoy what they do. But when it comes to programming for a living, nothing is more important than keeping everything clean and tidy. When most programmers do their job, the idea is to get as much work done as quickly as possible and as accurately [...]]]></description>
			<content:encoded><![CDATA[<p>Many programmers take what they do very seriously. Many also enjoy what they do. But when it comes to programming for a living, nothing is more important than keeping everything clean and tidy. When most programmers do their job, the idea is to get as much work done as quickly as possible and as accurately as possible. However, what many do not realize when they work at such a quick pace is that sometimes mistakes can fall under the radar that can cause a<span id="more-5"></span> lot of problems, especially when it comes to creating a webpage.</p>
<p>A small mistake can often become a very big problem in the course of website creation. Important things to be mindful of when using programming language are to stay organized and be wary of how things are phrased. Keeping these rules close helps to prevent any further stress that comes with the job. This is because staying organized will help you to find a problem quicker than if everything is messy. You will know exactly where to go if the code is kept neat and tidy. Many programmers love their job, but they often find that the stress and difficulties that come with the job can become significantly less if everything is kept in a neat fashion.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xmlsearch.info/2011/07/10/watch-your-syntax-keep-it-clean/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

