Alexey Langer
Alexey Langer
For example, Oracle not supported "CREATE IF NOT EXIST": ```java TableUtils.createTableIfNotExists(cs, Account.class); ``` this returns error: ```java ORA-00955: name is already used by an existing object ```
Oracle does not support keyword "LIMIT". Using "[limit](http://ormlite.com/javadoc/ormlite-core/doc-files/ormlite_3.html#QueryBuilder-Capabilities)" method: ```java limit(Integer maxRows) ``` results in an error. Instead, oracle supports ROWNUM: ```sql select * from Accouns where ROWNUM
Thank you for your attention. Good luck with the development of the fork, I hope it gains popularity :+1: