Lines Matching refs:column

13     public String getCatalogName(int column) throws java.sql.SQLException {  in getCatalogName()  argument
17 public String getColumnClassName(int column) throws java.sql.SQLException { in getColumnClassName() argument
18 column--; in getColumnClassName()
20 if (column < 0 || column >= r.tr.ncolumns) { in getColumnClassName()
24 switch (((TableResultX) r.tr).sql_type[column]) { in getColumnClassName()
51 public int getColumnDisplaySize(int column) throws java.sql.SQLException { in getColumnDisplaySize() argument
55 public String getColumnLabel(int column) throws java.sql.SQLException { in getColumnLabel() argument
56 column--; in getColumnLabel()
59 if (column < 0 || column >= r.tr.ncolumns) { in getColumnLabel()
62 c = r.tr.column[column]; in getColumnLabel()
67 public String getColumnName(int column) throws java.sql.SQLException { in getColumnName() argument
68 column--; in getColumnName()
71 if (column < 0 || column >= r.tr.ncolumns) { in getColumnName()
74 c = r.tr.column[column]; in getColumnName()
85 public int getColumnType(int column) throws java.sql.SQLException { in getColumnType() argument
86 column--; in getColumnType()
88 if (column >= 0 && column < r.tr.ncolumns) { in getColumnType()
90 return ((TableResultX) r.tr).sql_type[column]; in getColumnType()
98 public String getColumnTypeName(int column) throws java.sql.SQLException { in getColumnTypeName() argument
99 column--; in getColumnTypeName()
101 if (column >= 0 && column < r.tr.ncolumns) { in getColumnTypeName()
103 switch (((TableResultX) r.tr).sql_type[column]) { in getColumnTypeName()
124 public int getPrecision(int column) throws java.sql.SQLException { in getPrecision() argument
128 public int getScale(int column) throws java.sql.SQLException { in getScale() argument
132 public String getSchemaName(int column) throws java.sql.SQLException { in getSchemaName() argument
136 public String getTableName(int column) throws java.sql.SQLException { in getTableName() argument
137 column--; in getTableName()
140 if (column < 0 || column >= r.tr.ncolumns) { in getTableName()
143 c = r.tr.column[column]; in getTableName()
155 public boolean isAutoIncrement(int column) throws java.sql.SQLException { in isAutoIncrement() argument
159 public boolean isCaseSensitive(int column) throws java.sql.SQLException { in isCaseSensitive() argument
163 public boolean isCurrency(int column) throws java.sql.SQLException { in isCurrency() argument
167 public boolean isDefinitelyWritable(int column) in isDefinitelyWritable() argument
172 public int isNullable(int column) throws java.sql.SQLException { in isNullable() argument
176 public boolean isReadOnly(int column) throws java.sql.SQLException { in isReadOnly() argument
180 public boolean isSearchable(int column) throws java.sql.SQLException { in isSearchable() argument
184 public boolean isSigned(int column) throws java.sql.SQLException { in isSigned() argument
188 public boolean isWritable(int column) throws java.sql.SQLException { in isWritable() argument
196 c = r.tr.column[i]; in findColByName()