Package com.alibaba.wasp.jdbc.result

Examples of com.alibaba.wasp.jdbc.result.JdbcResultSetMetaData


      ResultInterface result = command.getMetaData();
      if (result == null) {
        return null;
      }
      String catalog = conn.getCatalog();
      JdbcResultSetMetaData meta = new JdbcResultSetMetaData(null, result,
          catalog);
      return meta;
    } catch (Exception e) {
      throw Logger.logAndConvert(log, e);
    }
View Full Code Here

TOP

Related Classes of com.alibaba.wasp.jdbc.result.JdbcResultSetMetaData

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.