Home | History | Annotate | Download | only in JDBC2z

Lines Matching refs:column

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