1 21 22 package org.apache.derby.iapi.sql; 23 24 30 31 public interface ResultDescription 32 { 33 44 String getStatementType(); 45 46 51 int getColumnCount(); 52 53 56 public ResultColumnDescriptor[] getColumnInfo(); 57 58 69 ResultColumnDescriptor getColumnDescriptor(int position); 70 71 84 public ResultDescription truncateColumns(int truncateFrom); 85 } 86 | Popular Tags |