Package railo.runtime.cfx

Examples of railo.runtime.cfx.QueryWrap


 
  /**
   * @see com.allaire.cfx.Response#addQuery(java.lang.String, java.lang.String[])
   */
  public Query addQuery(String name, String[] columns) {
    QueryWrap query = new QueryWrap(CFMLEngineFactory.getInstance().getCreationUtil().createQuery(columns,0,name),name.toLowerCase());
    queries.put(name.toLowerCase(),query);
    return query;
  }
View Full Code Here

TOP

Related Classes of railo.runtime.cfx.QueryWrap

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.