Package com.dianping.cosmos.hive.client.bo

Examples of com.dianping.cosmos.hive.client.bo.TableSchemaBo


    try {
      stmt = conn.createStatement();
      stmt.execute("use " + database);
      ResultSet rs = stmt.executeQuery("desc " + table);
      while (rs.next()) {
        TableSchemaBo tsb = new TableSchemaBo();
        tsb.setFieldName(rs.getString(1));
        tsb.setFieldType(rs.getString(2));
        tsb.setFieldComment(rs.getString(3));

        if (logger.isDebugEnabled()) {
          logger.debug("getTableSchema " + tsb);
        }
        tsbs.add(tsb);
View Full Code Here

TOP

Related Classes of com.dianping.cosmos.hive.client.bo.TableSchemaBo

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.