@@ -5,7 +5,7 @@ It is based on the wonderful https://github.com/maskarade/Android-Orma by [FUJI
55<br >
66This is a rewrite in pure java, to generate most stuff you need and then add it to your project
77either as a ``` .jar file ``` or as ``` java source ``` .<br >
8- You still need to add ``` sqlite-jdbc-3.50.3 .0.jar ``` to your project to use it.<br >
8+ You still need to add ``` sqlite-jdbc-3.51.0 .0.jar ``` to your project to use it.<br >
99<br ><br >
1010~~ sadly [ sqlite-jdbc] ( https://github.com/xerial/sqlite-jdbc ) project decided that it needs ``` slf4j-api jar ``` (for no good reason).~~
1111this was solved by: https://github.com/xerial/sqlite-jdbc/pull/1178
@@ -40,7 +40,7 @@ public class Person
4040
4141now create the Java sources with the Java SORMA2 Generator. <b >you need at least java 17</b >.<br >
4242``` bash
43- java -classpath " .:sqlite-jdbc-3.50.3 .0.jar:sorma2.jar" \
43+ java -classpath " .:sqlite-jdbc-3.51.0 .0.jar:sorma2.jar" \
4444 com/zoffcc/applications/sorm/Generator " gen"
4545```
4646
@@ -65,7 +65,7 @@ Android project you will need `com.github.zoff99:pkgs_zoffccAndroidJDBC` from [j
6565add this dependency to your ` build.gradle ` file
6666
6767```
68- implementation 'com.github.zoff99:pkgs_zoffccAndroidJDBC:1.0.15 '
68+ implementation 'com.github.zoff99:pkgs_zoffccAndroidJDBC:1.0.17 '
6969```
7070
7171
@@ -85,7 +85,7 @@ see: https://github.com/zoff99/sorma2/tree/master/test
8585
8686<img src =" https://github.com/zoff99/sorma2/releases/download/nightly/console_screen.png " width =" 70% " >
8787
88- Use the ` sorma_generated.jar ` (that is generated in the ` gen ` directory) and ` sqlite-jdbc-3.50.3 .0.jar ` for the Java project.<br >
88+ Use the ` sorma_generated.jar ` (that is generated in the ` gen ` directory) and ` sqlite-jdbc-3.51.0 .0.jar ` for the Java project.<br >
8989Check ` TestSorma.java ` for an Example usage.
9090<br >
9191
0 commit comments