質問編集履歴
2
情報の追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -143,3 +143,39 @@
|
|
143
143
|
##最後に
|
144
144
|
|
145
145
|
追加情報は載せますので、ご教授お願いします。
|
146
|
+
|
147
|
+
|
148
|
+
|
149
|
+
##改変した内容
|
150
|
+
|
151
|
+
コードの変更(検索の部分)
|
152
|
+
|
153
|
+
```Java
|
154
|
+
|
155
|
+
while (rs.next()) {
|
156
|
+
|
157
|
+
Label p = new Label(rs.getString("pref"));
|
158
|
+
|
159
|
+
Label c= new Label(rs.getString("city"));
|
160
|
+
|
161
|
+
Label a = new Label(rs.getString("area"));
|
162
|
+
|
163
|
+
Label z = new Label(rs.getString("zip"));
|
164
|
+
|
165
|
+
pane6.getChildren().addAll(p, c, a, z);
|
166
|
+
|
167
|
+
}
|
168
|
+
|
169
|
+
```
|
170
|
+
|
171
|
+
|
172
|
+
|
173
|
+
コード(GUIの部分)の変更はありません。
|
174
|
+
|
175
|
+
|
176
|
+
|
177
|
+
実行結果のエラー文
|
178
|
+
|
179
|
+
|
180
|
+
|
181
|
+
org.postgresql.util.PSQLException: この ResultSet に列名 zip ありません。
|
1
文章の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -142,6 +142,4 @@
|
|
142
142
|
|
143
143
|
##最後に
|
144
144
|
|
145
|
-
初心者+日本語がぐちゃぐちゃで説明がへたくそになっています。申し訳ありません。
|
146
|
-
|
147
145
|
追加情報は載せますので、ご教授お願いします。
|