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

/openjdk7/jdk/src/share/classes/javax/sql/
H A DRowSetMetaData.java219 * @param SQLType the column's SQL type
223 void setColumnType(int columnIndex, int SQLType) throws SQLException; argument
/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DRowSetMetaDataImpl.java94 * @param SQLType an <code>int</code> defined in the class <code>java.sql.Types</code>
98 private void checkColType(int SQLType) throws SQLException { argument
105 if (fieldValue == SQLType) {
446 * @param SQLType the designated column's SQL type, which must be one of the
454 public void setColumnType(int columnIndex, int SQLType) throws SQLException { argument
457 checkColType(SQLType);
459 colInfo[columnIndex].colType = SQLType;

Completed in 32 milliseconds