New SQL format options in Ver3.2.0

We have introduced 9 new format options in SQL Pretty Printer version 3.2.0. 1. IntoClauseInNewline when IntoClauseInNewline is false when IntoClauseInNewline is true 2. WhereClauseInNewline, LinefeedsAndOr_option when WhereClauseInNewline is false when WhereClauseInNewline is true position of AND/OR keyword and newline,…

General SQL Parser Java v0.5 release

There are lots of improvements since V0.4, below are some of the most important improvements: Oracle SQL and PLSQL query parse tree structure was fully accessible. toString() of all parse tree node classes was supported, so you can get text of parse…

General SQL Parser Java v0.4 release

In this version, we can easily fetch table and column from stored procedures(packages) of Oracle and SQL Server. Let’s take this create trigger statement(Oracle) for example: CREATE TRIGGER hr.emp_permit_changes BEFORE DELETE OR INSERT OR UPDATE ON hr.employees BEGIN INSERT INTO…