質問編集履歴

2

statementをPreparedStatementに変更。

2016/09/18 20:36

投稿

退会済みユーザー
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
- Statement stmt = con.createStatement();
169
+ PreparedStatement ps = con.prepareStatement(sql);
168
-
169
- String sql = "INSERT INTO " + table + " VALUES ("+employee_id +", '"+employee_name+"', '"+postal_code+"','"+address+"','"+phone_number+"','"+mobile_number+"')";
170
+
170
-
171
- stmt.execute(sql);
171
+ ps.execute(sql);
172
172
 
173
173
 
174
174
 

1

ツールの書き忘れ

2016/09/18 20:36

投稿

退会済みユーザー
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