質問編集履歴
2
statementをPreparedStatementに変更。
test
CHANGED
File without changes
|
test
CHANGED
@@ -164,11 +164,11 @@
|
|
164
164
|
|
165
165
|
Connection con =DBManager.getConnection();
|
166
166
|
|
167
|
+
String sql = "INSERT INTO " + table + " VALUES (?,?,?,?,?,?)";
|
168
|
+
|
167
|
-
|
169
|
+
PreparedStatement ps = con.prepareStatement(sql);
|
168
|
-
|
169
|
-
|
170
|
+
|
170
|
-
|
171
|
-
|
171
|
+
ps.execute(sql);
|
172
172
|
|
173
173
|
|
174
174
|
|
1
ツールの書き忘れ
test
CHANGED
File without changes
|
test
CHANGED
@@ -258,7 +258,7 @@
|
|
258
258
|
|
259
259
|
postgreSQL9.5
|
260
260
|
|
261
|
-
|
261
|
+
eclipse4.5
|
262
262
|
|
263
263
|
データの表示、更新はできるのですが、新規登録ができません。
|
264
264
|
|