Package org.jdbf.engine.basic

Examples of org.jdbf.engine.basic.PrimaryKey


    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();
View Full Code Here

TOP

Related Classes of org.jdbf.engine.basic.PrimaryKey

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.