<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Parsing SQL</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2005/01/28/parsing-sql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2005/01/28/parsing-sql/</link>
	<description>Daily posts of Excel tips…and other stuff</description>
	<lastBuildDate>Thu, 09 Feb 2012 18:06:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Lanux128</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/01/28/parsing-sql/#comment-18986</link>
		<dc:creator>Lanux128</dc:creator>
		<pubDate>Fri, 24 Feb 2006 06:34:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=999#comment-18986</guid>
		<description>&lt;p&gt;Hi there,&lt;/p&gt;
&lt;p&gt;I stumble upon this site while trying to understand about ParseSQLSyntax for my VB6 project.&lt;br&gt;
Btw, if already know by now then sorry for the redundant info. But those &quot;cf1? chars are RTF format. If output your syntax to a RichTextBox, this is what you&#039;d get: &lt;a href=&quot;http://img117.imageshack.us/my.php?image=sqlparser6pq.png&quot; rel=&quot;nofollow&quot;&gt;http://img117.imageshack.us/my.php?image=sqlparser6pq.png&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;regards,&lt;br&gt;
lanux&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi there,</p>
<p>I stumble upon this site while trying to understand about ParseSQLSyntax for my VB6 project.<br />
Btw, if already know by now then sorry for the redundant info. But those &#8220;cf1? chars are RTF format. If output your syntax to a RichTextBox, this is what you&#8217;d get: <a href="http://img117.imageshack.us/my.php?image=sqlparser6pq.png" rel="nofollow">http://img117.imageshack.us/my.php?image=sqlparser6pq.png</a></p>
<p>regards,<br />
lanux</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Craig</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/01/28/parsing-sql/#comment-15599</link>
		<dc:creator>Craig</dc:creator>
		<pubDate>Tue, 26 Jul 2005 11:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=999#comment-15599</guid>
		<description>&lt;p&gt;You might find this site interesting:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.sqlservercentral.com/columnists/awarren/trythesqlparserobjecttocolorizeyoursql&quot; rel=&quot;nofollow&quot;&gt;http://www.sqlservercentral.com/columnists/awarren/trythesqlparserobjecttocolorizeyoursql&lt;/a&gt;!.asp&lt;/p&gt;
&lt;p&gt;Turns out that the one method in the SQLPARSE.DLL returns the results as a string - in RTF!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>You might find this site interesting:</p>
<p><a href="http://www.sqlservercentral.com/columnists/awarren/trythesqlparserobjecttocolorizeyoursql" rel="nofollow">http://www.sqlservercentral.com/columnists/awarren/trythesqlparserobjecttocolorizeyoursql</a>!.asp</p>
<p>Turns out that the one method in the SQLPARSE.DLL returns the results as a string &#8211; in RTF!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Viral</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/01/28/parsing-sql/#comment-15542</link>
		<dc:creator>Viral</dc:creator>
		<pubDate>Fri, 15 Jul 2005 13:55:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=999#comment-15542</guid>
		<description>&lt;p&gt;What if i want to differentiate Comments? Can this dll help?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>What if i want to differentiate Comments? Can this dll help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Howard</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/01/28/parsing-sql/#comment-8852</link>
		<dc:creator>Howard</dc:creator>
		<pubDate>Wed, 23 Feb 2005 10:58:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=999#comment-8852</guid>
		<description>&lt;p&gt;Many thanks for your article. I am trying to xref the queries and tables used by all the queries in an Access project, and your reference to ParseSQLSyntax looks like it could save a lot of coding time.&lt;br&gt;
The immediate catch was Access&#039;s use of [] to bracket file and field names - unrecognised by ParseSQLSyntax, so the names came out in bits - but using a function to replace them in the SQL with quotes, means that each name now comes out of ParseSQLSyntax, as CF10s, but altogether. So anyway, now I am on my way!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Many thanks for your article. I am trying to xref the queries and tables used by all the queries in an Access project, and your reference to ParseSQLSyntax looks like it could save a lot of coding time.<br />
The immediate catch was Access&#8217;s use of [] to bracket file and field names &#8211; unrecognised by ParseSQLSyntax, so the names came out in bits &#8211; but using a function to replace them in the SQL with quotes, means that each name now comes out of ParseSQLSyntax, as CF10s, but altogether. So anyway, now I am on my way!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jamie Collins</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/01/28/parsing-sql/#comment-6668</link>
		<dc:creator>Jamie Collins</dc:creator>
		<pubDate>Wed, 02 Feb 2005 12:47:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=999#comment-6668</guid>
		<description>&lt;p&gt;My experience is the DLL Help Database doesn&#039;t always help. For example, I searched it yesterday using By Product + File, English (United States is the only flavour ...oops, I mean, flavor they have), Microsoft Office 2003, Microsoft Office Professional Edition 2003, msjet40.dll. It found no results, yet I find it hard to believe that an Office suite that includes MS Access does not ship with the latest version of Jet.&lt;/p&gt;
&lt;p&gt;Jamie.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>My experience is the DLL Help Database doesn&#8217;t always help. For example, I searched it yesterday using By Product + File, English (United States is the only flavour &#8230;oops, I mean, flavor they have), Microsoft Office 2003, Microsoft Office Professional Edition 2003, msjet40.dll. It found no results, yet I find it hard to believe that an Office suite that includes MS Access does not ship with the latest version of Jet.</p>
<p>Jamie.</p>
<p></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dick</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/01/28/parsing-sql/#comment-6317</link>
		<dc:creator>Dick</dc:creator>
		<pubDate>Mon, 31 Jan 2005 15:58:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=999#comment-6317</guid>
		<description>&lt;p&gt;Jazzer:  Thanks for that link.  I always wondered how people determined which programs supplied which files.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Jazzer:  Thanks for that link.  I always wondered how people determined which programs supplied which files.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jazzer</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/01/28/parsing-sql/#comment-6305</link>
		<dc:creator>Jazzer</dc:creator>
		<pubDate>Mon, 31 Jan 2005 09:39:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=999#comment-6305</guid>
		<description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;  Info about Microsofts DLL&#039;s can be found from &lt;a href=&quot;http://support.microsoft.com/dllhelp/default.aspx&quot; rel=&quot;nofollow&quot;&gt;http://support.microsoft.com/dllhelp/default.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;  SQLPARSE.DLL ships with Office 2k Pro, Office XP Pro and Visual Studio 6.0 EE.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>  Info about Microsofts DLL&#8217;s can be found from <a href="http://support.microsoft.com/dllhelp/default.aspx" rel="nofollow">http://support.microsoft.com/dllhelp/default.aspx</a></p>
<p>  SQLPARSE.DLL ships with Office 2k Pro, Office XP Pro and Visual Studio 6.0 EE.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RJ Smolders</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/01/28/parsing-sql/#comment-6285</link>
		<dc:creator>RJ Smolders</dc:creator>
		<pubDate>Mon, 31 Jan 2005 03:26:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=999#comment-6285</guid>
		<description>&lt;p&gt;Hi Guys&lt;/p&gt;
&lt;p&gt;I did a quick check for this file on my computer and found it under the Office folder. Also if you look at the screenshot provided by Dick, the full path to the DLL file is provided.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi Guys</p>
<p>I did a quick check for this file on my computer and found it under the Office folder. Also if you look at the screenshot provided by Dick, the full path to the DLL file is provided.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dick</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/01/28/parsing-sql/#comment-6274</link>
		<dc:creator>Dick</dc:creator>
		<pubDate>Sun, 30 Jan 2005 04:21:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=999#comment-6274</guid>
		<description>&lt;p&gt;Rob:  Foiled again.  I guess I won&#039;t be able to include that in a general purpose utility.  I searched microsoft.com for sqlparse.dll and it looks like it&#039;s also installed with Publisher - go figure that.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Rob:  Foiled again.  I guess I won&#8217;t be able to include that in a general purpose utility.  I searched microsoft.com for sqlparse.dll and it looks like it&#8217;s also installed with Publisher &#8211; go figure that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob van Gelder</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/01/28/parsing-sql/#comment-6272</link>
		<dc:creator>Rob van Gelder</dc:creator>
		<pubDate>Sun, 30 Jan 2005 03:14:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=999#comment-6272</guid>
		<description>&lt;p&gt;Dick,&lt;/p&gt;
&lt;p&gt;I think SQLPARSE comes with Visual Studio - which I don&#039;t have here at home.&lt;/p&gt;
&lt;p&gt;Rob&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Dick,</p>
<p>I think SQLPARSE comes with Visual Studio &#8211; which I don&#8217;t have here at home.</p>
<p>Rob</p>
]]></content:encoded>
	</item>
</channel>
</rss>

