<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to SQLParser_Implemented</title><link>https://sourceforge.net/p/whitebear/allura-wiki/SQLParser_Implemented/</link><description>Recent changes to SQLParser_Implemented</description><atom:link href="https://sourceforge.net/p/whitebear/allura-wiki/SQLParser_Implemented/feed" rel="self"/><language>en</language><lastBuildDate>Fri, 20 Jun 2025 10:10:50 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/whitebear/allura-wiki/SQLParser_Implemented/feed" rel="self" type="application/rss+xml"/><item><title>SQLParser_Implemented modified by silex6</title><link>https://sourceforge.net/p/whitebear/allura-wiki/SQLParser_Implemented/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v6
+++ v7
@@ -7,7 +7,7 @@
 SQL parser is included in org.whitebear.sql package and is currently under development

 ##Main files
-* SqlVisitor interface that define the available visitor methods - interface file is generated by ANTLR
+* SqlVisitor interface that define the available visitor methods - this file is generated by ANTLR
 * Translator, StatementTranslator, and ExpressionTranslator. Implements the interface above - the visitor methods that instantiate objects of the runtime package.
 * Sql.4g - the ANTLR grammar file. Describe the vocabulary - SQL keywords and symbols, as well as grammar rules - how to construct *phrases* in SQL

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">silex6</dc:creator><pubDate>Fri, 20 Jun 2025 10:10:50 -0000</pubDate><guid>https://sourceforge.netfc28fc77892c72b5af68e929c7e1838053bf91f5</guid></item><item><title>SQLParser_Implemented modified by silex6</title><link>https://sourceforge.net/p/whitebear/allura-wiki/SQLParser_Implemented/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v5
+++ v6
@@ -2,7 +2,7 @@

 Goal of the SQL parser is to convert some SQL source code to an internal representation. The current implementation convert the source code to a set of objects using classes implemented in the [runtime package](Runtime_Implemented).

-The current implementation use the ANTLR tool - a parser generator. With ANTLR, a configuration file define the vocabulary and the grammar rules for the language. The tool then generate the source code of the lexer and parser - the module that will parse a text and retrieve the different rules used in the SQL source code. When parsing a source text, the ANTLR runtime will call a visitor method for each grammar rules used in the source code. The visitor methods implemented in this package will create instances of runtime package classes to describe the SQL source code
+The current implementation use the ANTLR tool - a parser generator. With ANTLR, a configuration file define the vocabulary and the grammar rules for the language. The tool then generate the source code of the lexer and parser - the module that will parse a text and retrieve the different rules used in the SQL source code. When parsing a source text, the parser will call a visitor method for each grammar rules used in the SQL source code. The visitor methods implemented in this package will create instances of runtime package classes to describe the SQL source code

 SQL parser is included in org.whitebear.sql package and is currently under development

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">silex6</dc:creator><pubDate>Fri, 20 Jun 2025 10:09:50 -0000</pubDate><guid>https://sourceforge.netba6fa8ca70bb1ef24ea300566b2df1ecdaa0d731</guid></item><item><title>SQLParser_Implemented modified by silex6</title><link>https://sourceforge.net/p/whitebear/allura-wiki/SQLParser_Implemented/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v4
+++ v5
@@ -2,7 +2,7 @@

 Goal of the SQL parser is to convert some SQL source code to an internal representation. The current implementation convert the source code to a set of objects using classes implemented in the [runtime package](Runtime_Implemented).

-The current implementation use the ANTLR tool - a parser generator. With ANTLR, a configuration file define the vocabulary and the grammar rules for the language. The tool then generate the source code of the parser - the module that will parse a text and retrieve the different rules used in the SQL source code. When parsing a source text, the ANTLR runtime will call a visitor method for each grammar rules used in the source code. The visitor methods implemented in this package will create instances of runtime package classes to describe the SQL source code
+The current implementation use the ANTLR tool - a parser generator. With ANTLR, a configuration file define the vocabulary and the grammar rules for the language. The tool then generate the source code of the lexer and parser - the module that will parse a text and retrieve the different rules used in the SQL source code. When parsing a source text, the ANTLR runtime will call a visitor method for each grammar rules used in the source code. The visitor methods implemented in this package will create instances of runtime package classes to describe the SQL source code

 SQL parser is included in org.whitebear.sql package and is currently under development

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">silex6</dc:creator><pubDate>Fri, 20 Jun 2025 10:08:49 -0000</pubDate><guid>https://sourceforge.nete826c4e12b75530de7594efa10341ae804e6f3fe</guid></item><item><title>SQLParser_Implemented modified by silex6</title><link>https://sourceforge.net/p/whitebear/allura-wiki/SQLParser_Implemented/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v3
+++ v4
@@ -6,9 +6,10 @@

 SQL parser is included in org.whitebear.sql package and is currently under development

-##Main classes
+##Main files
 * SqlVisitor interface that define the available visitor methods - interface file is generated by ANTLR
 * Translator, StatementTranslator, and ExpressionTranslator. Implements the interface above - the visitor methods that instantiate objects of the runtime package.
+* Sql.4g - the ANTLR grammar file. Describe the vocabulary - SQL keywords and symbols, as well as grammar rules - how to construct *phrases* in SQL

 #See also
 http://www.antlr.org - ANTLR tool
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">silex6</dc:creator><pubDate>Fri, 20 Jun 2025 10:07:53 -0000</pubDate><guid>https://sourceforge.netf5f696bcd929f12f5f73ae7c4473f867d52e5e8e</guid></item><item><title>SQLParser_Implemented modified by silex6</title><link>https://sourceforge.net/p/whitebear/allura-wiki/SQLParser_Implemented/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v2
+++ v3
@@ -1,11 +1,15 @@
 # SQL Parser

-Goal of the SQL parser is to convert some SQL source code to an internal representation. The current implementation convert the source code to a set of objects using classes implemented in the runtime package.
+Goal of the SQL parser is to convert some SQL source code to an internal representation. The current implementation convert the source code to a set of objects using classes implemented in the [runtime package](Runtime_Implemented).

-The current implementation use the ANTLR tool - a parser generator. With ANTLR, a configuration file define the vocabulary and the grammar rules for the language. The tool then generate the source code of the parser that will parse a text and retrieve the different rules used in the SQL source code. When parsing a source text, the ANTLR runtime will call a visitor method for each grammar rules used in the source code.
+The current implementation use the ANTLR tool - a parser generator. With ANTLR, a configuration file define the vocabulary and the grammar rules for the language. The tool then generate the source code of the parser - the module that will parse a text and retrieve the different rules used in the SQL source code. When parsing a source text, the ANTLR runtime will call a visitor method for each grammar rules used in the source code. The visitor methods implemented in this package will create instances of runtime package classes to describe the SQL source code

 SQL parser is included in org.whitebear.sql package and is currently under development

 ##Main classes
-* SqlVisitor define the available visitor methods - interface file generated by ANTLR
-* Translator, StatementTranslator, and ExpressionTranslator. Implements the interface above - the visitor methods that instantiate objects of the runtime package - internal representation of the related SQL construct 
+* SqlVisitor interface that define the available visitor methods - interface file is generated by ANTLR
+* Translator, StatementTranslator, and ExpressionTranslator. Implements the interface above - the visitor methods that instantiate objects of the runtime package.
+
+#See also
+http://www.antlr.org - ANTLR tool
+[SQL parser](SQL_Parser) specification
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">silex6</dc:creator><pubDate>Fri, 20 Jun 2025 10:04:00 -0000</pubDate><guid>https://sourceforge.netb457b51438e137d55d8043647f9b7745362244fb</guid></item><item><title>SQLParser_Implemented modified by silex6</title><link>https://sourceforge.net/p/whitebear/allura-wiki/SQLParser_Implemented/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -2,7 +2,7 @@

 Goal of the SQL parser is to convert some SQL source code to an internal representation. The current implementation convert the source code to a set of objects using classes implemented in the runtime package.

-The current implementation use the ANTLR tool - a parser generator. With ANTLR, a configuration file define the vocabulary and the grammar rules for the language. The tool then generate the code needed to parse a text and retrieve the different rules used in the SQL source code. When parsing a source text, the ANTLR runtime will call a visitor method for each grammar rules used in the source code.
+The current implementation use the ANTLR tool - a parser generator. With ANTLR, a configuration file define the vocabulary and the grammar rules for the language. The tool then generate the source code of the parser that will parse a text and retrieve the different rules used in the SQL source code. When parsing a source text, the ANTLR runtime will call a visitor method for each grammar rules used in the source code.

 SQL parser is included in org.whitebear.sql package and is currently under development

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">silex6</dc:creator><pubDate>Thu, 19 Jun 2025 19:20:54 -0000</pubDate><guid>https://sourceforge.net5c5d18d60383828bafc93c7f267e7806f781da0c</guid></item><item><title>SQLParser_Implemented modified by silex6</title><link>https://sourceforge.net/p/whitebear/allura-wiki/SQLParser_Implemented/</link><description>&lt;div class="markdown_content"&gt;&lt;h1 id="sql-parser"&gt;SQL Parser&lt;/h1&gt;
&lt;p&gt;Goal of the SQL parser is to convert some SQL source code to an internal representation. The current implementation convert the source code to a set of objects using classes implemented in the runtime package.&lt;/p&gt;
&lt;p&gt;The current implementation use the ANTLR tool - a parser generator. With ANTLR, a configuration file define the vocabulary and the grammar rules for the language. The tool then generate the code needed to parse a text and retrieve the different rules used in the SQL source code. When parsing a source text, the ANTLR runtime will call a visitor method for each grammar rules used in the source code.&lt;/p&gt;
&lt;p&gt;SQL parser is included in org.whitebear.sql package and is currently under development&lt;/p&gt;
&lt;h2 id="main-classes"&gt;Main classes&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;SqlVisitor define the available visitor methods - interface file generated by ANTLR&lt;/li&gt;
&lt;li&gt;Translator, StatementTranslator, and ExpressionTranslator. Implements the interface above - the visitor methods that instantiate objects of the runtime package - internal representation of the related SQL construct &lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">silex6</dc:creator><pubDate>Thu, 19 Jun 2025 19:13:11 -0000</pubDate><guid>https://sourceforge.net095ffc7c8df2fc018b38bdb943b7be93de41232c</guid></item></channel></rss>