|
|
|
@ -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; |
|
|
|
|
} |
|
|
|
|