Package com.knowgate.dataobjs

Examples of com.knowgate.dataobjs.DBTable


   * @throws SQLException
   */
  public QueryByForm(JDCConnection oConn, String sBaseTable, String sTableAlias, String sQueryGUID) throws SQLException {
    super(DB.k_queries, "QueryByForm");

    oBaseTable = new DBTable(oConn.getCatalog(), "dbo", sBaseTable, 1);
    oBaseTable.readColumns(oConn, oConn.getMetaData());
    sAlias = sTableAlias;

    Object aQry[] = { sQueryGUID };

View Full Code Here

TOP

Related Classes of com.knowgate.dataobjs.DBTable

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.