Lines Matching refs:column

39     public int getColumnDisplaySize(int column) throws SQLException {  in getColumnDisplaySize()  argument
41 return jdbcResultSetMetaData.getColumnDisplaySize(column); in getColumnDisplaySize()
48 public int getColumnType(int column) throws SQLException { in getColumnType() argument
50 return jdbcResultSetMetaData.getColumnType(column); in getColumnType()
69 public boolean isCaseSensitive(int column) throws SQLException { in isCaseSensitive() argument
71 return jdbcResultSetMetaData.isCaseSensitive(column); in isCaseSensitive()
78 public String getSchemaName(int column) throws SQLException { in getSchemaName() argument
80 String schemaName = jdbcResultSetMetaData.getSchemaName(column); in getSchemaName()
91 public String getColumnName(int column) throws SQLException { in getColumnName() argument
93 String columnName = jdbcResultSetMetaData.getColumnName(column); in getColumnName()
104 public String getTableName(int column) throws SQLException { in getTableName() argument
106 String tableName = jdbcResultSetMetaData.getTableName(column); in getTableName()
117 public String getCatalogName(int column) throws SQLException { in getCatalogName() argument
119 String catalogName = jdbcResultSetMetaData.getCatalogName(column); in getCatalogName()
130 public String getColumnTypeName(int column) throws SQLException { in getColumnTypeName() argument
132 String columnTypeName = jdbcResultSetMetaData.getColumnTypeName(column); in getColumnTypeName()
143 public String getColumnLabel(int column) throws SQLException { in getColumnLabel() argument
145 String columnLabel = jdbcResultSetMetaData.getColumnLabel(column); in getColumnLabel()
156 public String getColumnServiceName(int column) throws SQLException { in getColumnServiceName() argument
158 String columnServiceName = jdbcResultSetMetaData.getColumnClassName(column); in getColumnServiceName()
169 public boolean isCurrency(int column) throws SQLException { in isCurrency() argument
174 return jdbcResultSetMetaData.isCurrency(column); in isCurrency()
181 public boolean isAutoIncrement(int column) throws SQLException { in isAutoIncrement() argument
183 return jdbcResultSetMetaData.isAutoIncrement(column); in isAutoIncrement()
190 public boolean isSigned(int column) throws SQLException { in isSigned() argument
192 return jdbcResultSetMetaData.isSigned(column); in isSigned()
199 public int getPrecision(int column) throws SQLException { in getPrecision() argument
201 return jdbcResultSetMetaData.getPrecision(column); in getPrecision()
208 public int getScale(int column) throws SQLException { in getScale() argument
210 return jdbcResultSetMetaData.getScale(column); in getScale()
217 public int isNullable(int column) throws SQLException { in isNullable() argument
219 return jdbcResultSetMetaData.isNullable(column); in isNullable()
226 public boolean isSearchable(int column) throws SQLException { in isSearchable() argument
228 return jdbcResultSetMetaData.isSearchable(column); in isSearchable()
235 public boolean isReadOnly(int column) throws SQLException { in isReadOnly() argument
237 return jdbcResultSetMetaData.isReadOnly(column); in isReadOnly()
244 public boolean isDefinitelyWritable(int column) throws SQLException { in isDefinitelyWritable() argument
246 return jdbcResultSetMetaData.isDefinitelyWritable(column); in isDefinitelyWritable()
253 public boolean isWritable(int column) throws SQLException { in isWritable() argument
255 return jdbcResultSetMetaData.isWritable(column); in isWritable()