feat(pg-lct-msg-client): switch to mvn module de.swingbe.ifleet:pg-lct-msg-api:0.1.0
parent
444777c386
commit
34ac2a850a
|
@ -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>
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue