-
Notifications
You must be signed in to change notification settings - Fork 5
/
BaseResultSetMetaData.java
153 lines (128 loc) · 5.96 KB
/
BaseResultSetMetaData.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package JDBCExcel;
import java.sql.*;
/**
*
* @author ron
*/
public class BaseResultSetMetaData implements java.sql.ResultSetMetaData {
@Override
public int getColumnCount() throws SQLException {
System.err.println("Method BaseResultSetMetaData.getColumnCount not implemented.");
throw new SQLException("Method BaseResultSetMetaData.getColumnCount not implemented.");
}
@Override
public boolean isAutoIncrement(int column) throws SQLException {
System.err.println("Method BaseResultSetMetaData.isAutoIncrement not implemented.");
throw new SQLException("Method BaseResultSetMetaData.isAutoIncrement not implemented.");
}
@Override
public boolean isCaseSensitive(int column) throws SQLException {
System.err.println("Method BaseResultSetMetaData.isCaseSensitive not implemented.");
throw new SQLException("Method BaseResultSetMetaData.isCaseSensitive not implemented.");
}
@Override
public boolean isSearchable(int column) throws SQLException {
System.err.println("Method BaseResultSetMetaData.isSearchable not implemented.");
throw new SQLException("Method BaseResultSetMetaData.isSearchable not implemented.");
}
@Override
public boolean isCurrency(int column) throws SQLException {
System.err.println("Method BaseResultSetMetaData.isCurrency not implemented.");
throw new SQLException("Method BaseResultSetMetaData.isCurrency not implemented.");
}
@Override
public int isNullable(int column) throws SQLException {
System.err.println("Method BaseResultSetMetaData.isNullable not implemented.");
throw new SQLException("Method BaseResultSetMetaData.isNullable not implemented.");
}
@Override
public boolean isSigned(int column) throws SQLException {
System.err.println("Method BaseResultSetMetaData.isSigned not implemented.");
throw new SQLException("Method BaseResultSetMetaData.isSigned not implemented.");
}
@Override
public int getColumnDisplaySize(int column) throws SQLException {
System.err.println("Method BaseResultSetMetaData.getColumnDisplaySize not implemented.");
throw new SQLException("Method BaseResultSetMetaData.getColumnDisplaySize not implemented.");
}
@Override
public String getColumnLabel(int column) throws SQLException {
System.err.println("Method BaseResultSetMetaData.getColumnLabel not implemented.");
throw new SQLException("Method BaseResultSetMetaData.getColumnLabel not implemented.");
}
@Override
public String getColumnName(int column) throws SQLException {
System.err.println("Method BaseResultSetMetaData.getColumnName not implemented.");
throw new SQLException("Method BaseResultSetMetaData.getColumnName not implemented.");
}
@Override
public String getSchemaName(int column) throws SQLException {
System.err.println("Method BaseResultSetMetaData.getSchemaName not implemented.");
throw new SQLException("Method BaseResultSetMetaData.getSchemaName not implemented.");
}
@Override
public int getPrecision(int column) throws SQLException {
System.err.println("Method BaseResultSetMetaData.getPrecision not implemented.");
throw new SQLException("Method BaseResultSetMetaData.getPrecision not implemented.");
}
@Override
public int getScale(int column) throws SQLException {
System.err.println("Method BaseResultSetMetaData.getScale not implemented.");
throw new SQLException("Method BaseResultSetMetaData.getScale not implemented.");
}
@Override
public String getTableName(int column) throws SQLException {
System.err.println("Method BaseResultSetMetaData.getTableName not implemented.");
throw new SQLException("Method BaseResultSetMetaData.getTableName not implemented.");
}
@Override
public String getCatalogName(int column) throws SQLException {
System.err.println("Method BaseResultSetMetaData.getCatalogName not implemented.");
throw new SQLException("Method BaseResultSetMetaData.getCatalogName not implemented.");
}
@Override
public int getColumnType(int column) throws SQLException {
System.err.println("Method BaseResultSetMetaData.getColumnType not implemented.");
throw new SQLException("Method BaseResultSetMetaData.getColumnType not implemented.");
}
@Override
public String getColumnTypeName(int column) throws SQLException {
System.err.println("Method BaseResultSetMetaData.getColumnTypeName not implemented.");
throw new SQLException("Method BaseResultSetMetaData.getColumnTypeName not implemented.");
}
@Override
public boolean isReadOnly(int column) throws SQLException {
System.err.println("Method BaseResultSetMetaData.isReadOnly not implemented.");
throw new SQLException("Method BaseResultSetMetaData.isReadOnly not implemented.");
}
@Override
public boolean isWritable(int column) throws SQLException {
System.err.println("Method BaseResultSetMetaData.isWritable not implemented.");
throw new SQLException("Method BaseResultSetMetaData.isWritable not implemented.");
}
@Override
public boolean isDefinitelyWritable(int column) throws SQLException {
System.err.println("Method BaseResultSetMetaData.isDefinitelyWritable not implemented.");
throw new SQLException("Method BaseResultSetMetaData.isDefinitelyWritable not implemented.");
}
@Override
public String getColumnClassName(int column) throws SQLException {
System.err.println("Method BaseResultSetMetaData.getColumnClassName not implemented.");
throw new SQLException("Method BaseResultSetMetaData.getColumnClassName not implemented.");
}
@Override
public <T> T unwrap(Class<T> iface) throws SQLException {
System.err.println("Method BaseResultSetMetaData.unwrap not implemented.");
throw new SQLException("Method BaseResultSetMetaData.unwrap not implemented.");
}
@Override
public boolean isWrapperFor(Class<?> iface) throws SQLException {
System.err.println("Method BaseResultSetMetaData.isWrapperFor not implemented.");
throw new SQLException("Method BaseResultSetMetaData.isWrapperFor not implemented.");
}
}