R
Ricardo Hernández Sáez
I'm working with a parser http://www.devincook.com/GOLDParser/index.htm
and want to find the grammar that define the sql dialect of the Jet Database
Engine.
I'm not talking about documents like those:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnacc2k/html/acfundsql.asp
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnacc2k/html/acintsql.asp
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnacc2k/html/acadvsql.asp
I'm looking for something like this:
<Select Stm> ::= SELECT <Columns>
<Into Clause>
<From Clause>
<Where Clause>
<Group Clause>
<Having Clause>
<Order Clause>
<Columns> ::= <Restriction> '*' | <Restriction> <Column List>
<Column List> ::= <Column Item> ',' <Column List> | <Column Item>
<Column Item> ::= <Column Source> | <Column Source> Id !ALIAS
<Column Source> ::= <Aggregate> | Id | Id '.' '*'
....
I've found the grammars ansi sql-89, ansi sql-92 and odbcm but i want
something more related to jet.
and want to find the grammar that define the sql dialect of the Jet Database
Engine.
I'm not talking about documents like those:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnacc2k/html/acfundsql.asp
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnacc2k/html/acintsql.asp
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnacc2k/html/acadvsql.asp
I'm looking for something like this:
<Select Stm> ::= SELECT <Columns>
<Into Clause>
<From Clause>
<Where Clause>
<Group Clause>
<Having Clause>
<Order Clause>
<Columns> ::= <Restriction> '*' | <Restriction> <Column List>
<Column List> ::= <Column Item> ',' <Column List> | <Column Item>
<Column Item> ::= <Column Source> | <Column Source> Id !ALIAS
<Column Source> ::= <Aggregate> | Id | Id '.' '*'
....
I've found the grammars ansi sql-89, ansi sql-92 and odbcm but i want
something more related to jet.