Searched defs:colCount (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DRowSetMetaDataImpl.java59 private int colCount; field in class:RowSetMetaDataImpl
82 if (col <= 0 || col > colCount) {
130 colCount = columnCount;
132 // If the colCount is Integer.MAX_VALUE,
134 // even if we try to initialize the colCount with
135 // colCount = Integer.MAx_VALUE-1, the colInfo
140 if(!(colCount == Integer.MAX_VALUE)) {
141 colInfo = new ColInfo[colCount + 1];
143 for (int i=1; i <= colCount; i++) {
491 return colCount;
[all...]

Completed in 384 milliseconds