Package railo.runtime.sql.old

Examples of railo.runtime.sql.old.ZStatement


   */
  public Set<String> getInvokedTables() throws ParseException {
   
     
      // Read all SQL statements from input
      ZStatement st;
      Set<String> tables=new HashSet<String>();
     
    while((st = parser.readStatement()) != null) {
      this.sql=st.toString();
        if(st instanceof ZQuery) { // An SQL query: query the DB
          getInvokedTables((ZQuery)st,tables);           
        }
        break;
    }
View Full Code Here

TOP

Related Classes of railo.runtime.sql.old.ZStatement

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.