Package com.bleujin.framework.db.procedure

Examples of com.bleujin.framework.db.procedure.IQueryable.execUpdate()


public class TestPlan extends DBTestCase{

  public void testExecute() throws Exception {
    IQueryable q1 = dc.createUserCommand("explain plan for select * from yyyymmdd_tblc") ;
    int result = q1.execUpdate() ;
  }
 
  public void testPlanView() throws Exception {
    Queryable q1 = (Queryable)dc.createUserCommand("explain plan for select * from copy_tblc") ;
    Queryable q2 = (Queryable)dc.createUserCommand("select substr (lpad(' ', level-1) || operation || ' (' || options || ')',1,30 ) Operation, object_name Object " +
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.