feat(pg-lct-msg-client): switch to mvn module de.swingbe.ifleet:pg-lct-msg-api:0.1.0

This commit is contained in:
dancingCycle 2022-09-07 15:07:13 +02:00
parent 444777c386
commit 34ac2a850a
2 changed files with 9 additions and 1 deletions

View File

@ -87,7 +87,7 @@
<dependency>
<groupId>de.swingbe.ifleet</groupId>
<artifactId>pg-lct-msg-api</artifactId>
<version>0.0.4</version>
<version>0.1.0</version>
</dependency>
</dependencies>

View File

@ -4,6 +4,8 @@ import de.swingbe.ifleet.controller.PgConnection;
import de.swingbe.ifleet.controller.PgPrepStatement;
import de.swingbe.ifleet.model.LctMsg;
import java.util.ArrayList;
public class Main {
private static final String TABLE = "lct_msg";
@ -67,6 +69,12 @@ public class Main {
}
}
ArrayList<ArrayList<String>> aryLctMsgs = pgPrepStatement.get("%","%GER%", "12:00:1%","%");
if( aryLctMsgs != null) {
System.out.println("main() aryLctMsgs size: " + aryLctMsgs.size());
System.out.println("main() aryLctMsgs: " + aryLctMsgs);
}
System.out.println("main() done.");
return;
}