You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-1Lines changed: 10 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@ JSqlParser is dual licensed under **LGPL V2.1** or **Apache Software License, Ve
22
22
Please provide feedback on https://github.com/JSQLParser/JSqlParser/issues/677, about removing bracket identifier quotation to support array processing.
23
23
24
24
## News
25
+
* breaking **API** change: to support chained functions attribute type was changed to **Expression**
25
26
* Released version **1.4** of JSqlParser
26
27
* Released version **1.3** of JSqlParser
27
28
* Changed behaviour of dotted multipart names for user variables, tables and columns to accept e.g. ORM class names. To achieve this some behaviour of name parsing had to be changed. Before this the parser would fail missing databasenames for SqlServer queries (server..schema.table). But this is allowed for the schema (server.database..table). Now the parser accepts missing inner names per se to avoid some very complicated parsing rules.
@@ -33,6 +34,9 @@ Please provide feedback on https://github.com/JSQLParser/JSqlParser/issues/677,
33
34
34
35
More news can be found here: https://github.com/JSQLParser/JSqlParser/wiki/News.
35
36
37
+
## Alternatives to JSqlParser?
38
+
[**General SQL Parser**](http://www.sqlparser.com/features/introduce.php?utm_source=github-jsqlparser&utm_medium=text-general) looks pretty good, with extended SQL syntax (like PL/SQL and T-SQL) and java + .NET APIs. The tool is commercial (license available online), with a free download option.
39
+
36
40
## JSqlParser
37
41
38
42
JSqlParser is a SQL statement parser. It translates SQLs in a traversable hierarchy of Java classes. JSqlParser is not limited to one database but provides support for a lot of specials of Oracle, SqlServer, MySQL, PostgreSQL ... To name some, it has support for Oracles join syntax using (+), PostgreSQLs cast syntax using ::, relational operators like != and so on.
@@ -55,6 +59,11 @@ Also I would like to know about needed examples or documentation stuff.
55
59
56
60
## Extensions in the latest SNAPSHOT version 2.0
57
61
62
+
* support for **GROUPING SETS**
63
+
* first support for db date arithmetic
64
+
* support for chained functions
65
+
* first support for **FOR XML PATH**
66
+
* support for **NEXTVAL FOR**
58
67
* changed all source code license headers to reflect the dual license of JSqlParser more correctly
59
68
* support of **OPTIMIZE FOR 20 ROWS** like expressions
60
69
* allowed conditions within **then** and **else** of a **case** statement
@@ -133,7 +142,7 @@ And this is the dependency declaration in your pom:
0 commit comments