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.
|
1
|
|
|
|
|
|
There's a OO parser generator called ANTLR that might help you.
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) |
|||
|
|
|
|
|
||
|
|
|
|
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. |
||||
|