public static void main(String[] args) {
try{
CompositePrimaryKeySample sample = new CompositePrimaryKeySample();
PrimaryKey pk = new PrimaryKey();
pk.setValueKey("OID",new Integer(1));
pk.setValueKey("lineId",new Integer(0));
QueryResults results = sample.selectByPrimaryKey("orderline",pk);
sample.printQueryResults(results);
}
catch(Exception e){
e.printStackTrace();