vote up 2 vote down star
1

I'm trying to build a .NET Managed data provider and I need to be able to parse SQL commands.

What are good, free (as in beer) objects to do this? - I haven't seen any standard .NET assemblies for this yet.

Thanks, Eli.

flag

70% accept rate

4 Answers

vote up 4 vote down check

There's a OO parser generator called ANTLR that might help you.

What is ANTLR? ANTLR, ANother Tool for Language Recognition, is a language tool that provides a framework for constructing recognizers, interpreters, compilers, and translators from grammatical descriptions containing actions in a variety of target languages. ANTLR provides excellent support for tree construction, tree walking, translation, error recovery, and error reporting.

In fact, there are a pile of grammars already encoded for ANTLR, including several SQL dialects: Grammar List

(for posterity: note that the "General SQL Parser" also recommended in these answers is not free)

link|flag
vote up 2 vote down

Try General SQL Parser

link|flag
vote up 1 vote down

What is your data provider talking to? If you're implementing your own data engine then so be it, but in general your provider should just be a connector and pass the sql on to some other engine.

link|flag
I'm writing my own engine, so no help there. – Eli Sep 16 '08 at 20:34
That's fine. I had to ask. – Joel Coehoorn Sep 16 '08 at 21:13
vote up -1 vote down

http://downloads.zdnet.com/abstract.aspx?docid=273302

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.