Examples of ResultColumnDescriptor


Examples of org.apache.derby.iapi.sql.ResultColumnDescriptor

     * @param column the first column is 1, the second is 2, ...
     * @return column name
   * @exception SQLException thrown on failure
     */
  public String getColumnName(int column) throws SQLException  {
    ResultColumnDescriptor cd = columnInfo[column - 1];
    String s = cd.getName();
    // database returns null when no column name to differentiate from empty name
      return (s==null? "" : s);

  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.