Package org.jdbf.engine.sql

Examples of org.jdbf.engine.sql.Cursor


    }

    public static void main(String[] args) {
      try{
        SelectSample sample = new SelectSample();
        Cursor results = (Cursor)sample.selectAll("product");
        Product prod = (Product)results.first();
        String xml = prod.marshall();
        System.out.println("===== Marshall =====");
        System.out.println(xml);
        prod = (Product)Product.unmarshall(xml);
      System.out.println("===== UnMarshall =====");
View Full Code Here

TOP

Related Classes of org.jdbf.engine.sql.Cursor

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.