parse « SQL « Java Database Q&A





1. SQL parser library for Java    stackoverflow.com

Is there a good open-source Java library for parsing SQL statements? If possible, it should be customizable or flexible enough to also be able to parse (or at least ignore) vendor-specific syntax ...

2. What's the easiest way to expose a SQL interface to my application?    stackoverflow.com

I'm working on an application which stores data in tables, similar to an RDBMS. I'm looking for a way to let my users query this data using SQL. Ideally, ...

3. Need help with parsing sql in java    stackoverflow.com

I have the below code that splits the sql statement and give its indices for the columns.

String sql = "INSERT INTO Table1(SSN, EMPID) VALUES (?,?)";

    public static ...

4. I need sql parser for my own database implementation    stackoverflow.com

Possible Duplicate:
SQL parser library for Java
I have a project to implement a simple database. For this project I need a java based sql parser, ...

5. Are there any alternatives to GSP (General SQL Parser)?    stackoverflow.com

General SQL Parser (GSP) is a quite feature rich SQL parser (to the extent that I have played with it) that allows for modifying SQL statements in a robust way ...

6. parse sql to objects    coderanch.com

Hi! thanks, I will check this. I have to txt files conating DML statements and i need to compare them - and to check which statements is in both files. the problem is, that they dont have to have the same string exactly matching (order can be different, spaces etc.) so i thought the easy will be to parse them into ...