Package com.alibaba.wasp.jdbc

Examples of com.alibaba.wasp.jdbc.JdbcException


  }

  @Override
  public String getAlias(int i) {
    if (i > aliasLabelMap.size() - 1) {
      throw new JdbcException("the alias greater than the columns size");
    }
    return aliasLabelMap.get(i);
  }
View Full Code Here

TOP

Related Classes of com.alibaba.wasp.jdbc.JdbcException

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.