File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -17,13 +17,13 @@ You can use following Maven dependency:
1717<dependency >
1818 <groupId >io.github.eaxdev</groupId >
1919 <artifactId >jsonsql4j</artifactId >
20- <version >0.0.1 </version >
20+ <version >0.0.2 </version >
2121</dependency >
2222```
2323## Gradle
2424
2525``` groovy
26- implementation 'io.github.eaxdev:jsonsql4j:0.0.1 '
26+ implementation 'io.github.eaxdev:jsonsql4j:0.0.2 '
2727```
2828Also, you can use [ GitHub Packages] ( https://github.com/eaxdev/JsonSQL4J/packages ) .
2929
@@ -52,8 +52,8 @@ Given JSON:
5252use library:
5353
5454``` java
55- SelectQuery selectQuery = new SelectQuery (jsonString);
56- String query = selectQuery. getSelect ();
55+ Query selectQuery = new SelectQuery (jsonString);
56+ String query = selectQuery. getQuery ();
5757// query = SELECT field1, field2 AS test FROM schema.table1 WHERE (field3 = 5 OR field4 = 3)
5858
5959```
You can’t perform that action at this time.
0 commit comments