Home | History | Annotate | Download | only in database

Lines Matching refs:columnCount

31     private final int columnCount;
42 this.columnCount = columnNames.length;
48 this.data = new Object[columnCount * initialCapacity];
65 if (column < 0 || column >= columnCount) {
67 + column + ", # of columns: " + columnCount);
75 return data[mPos * columnCount + column];
87 int endIndex = rowCount * columnCount;
89 int start = endIndex - columnCount;
103 if (columnValues.length != columnCount) {
105 + columnCount + ", columnValues.length = "
109 int start = rowCount++ * columnCount;
110 ensureCapacity(start + columnCount);
111 System.arraycopy(columnValues, 0, data, start, columnCount);
124 int start = rowCount * columnCount;
125 int end = start + columnCount;
157 if (size != columnCount) {
159 + columnCount + ", columnValues.size() = " + size);