Home | History | Annotate | Download | only in shadows

Lines Matching defs:columnIndex

33             for (int columnIndex = 1; columnIndex <= columnCount; columnIndex++) {
34 String cName = metaData.getColumnName(columnIndex).toLowerCase();
35 this.columnNames.put(cName, columnIndex-1);
36 this.columnNameArray[columnIndex-1]=cName;
63 Integer columnIndex = getColIndex(columnName);
64 if (columnIndex == -1) {
67 return columnIndex;
101 public byte[] getBlob(int columnIndex) {
103 return (byte[]) this.currentRow.get(getColumnNames()[columnIndex]);
107 public String getString(int columnIndex) {
109 Object value = this.currentRow.get(getColumnNames()[columnIndex]);
122 public short getShort(int columnIndex) {
124 Object o =this.currentRow.get(getColumnNames()[columnIndex]);
130 public int getInt(int columnIndex) {
132 Object o =this.currentRow.get(getColumnNames()[columnIndex]);
138 public long getLong(int columnIndex) {
140 Object o =this.currentRow.get(getColumnNames()[columnIndex]);
146 public float getFloat(int columnIndex) {
148 Object o =this.currentRow.get(getColumnNames()[columnIndex]);
155 public double getDouble(int columnIndex) {
157 Object o =this.currentRow.get(getColumnNames()[columnIndex]);
190 public boolean isNull(int columnIndex) {
191 Object o = this.currentRow.get(getColumnNames()[columnIndex]);