回答編集履歴

1

修正

2020/06/22 06:55

投稿

gentaro
gentaro

スコア8949

test CHANGED
@@ -28,7 +28,7 @@
28
28
 
29
29
  - jdbcTemplate.update("INSERT INTO book(id INT(11) AUTO_INCREMENT, title, author, publisher, buy_Date, release_Date, over_View) VALUES(?, ?, ?, ?, ?, ?, ?)",
30
30
 
31
- + jdbcTemplate.update("INSERT INTO book(title, author, publisher, buy_Date, release_Date, over_View) VALUES(?, ?, ?, ?, ?, ?, ?)",
31
+ + jdbcTemplate.update("INSERT INTO book(title, author, publisher, buy_Date, release_Date, over_View) VALUES(?, ?, ?, ?, ?, ?)",
32
32
 
33
33
  - book.getId(), book.getTitle(), book.getAuthor(), book.getPublisher(), book.getBuyDate(), book.getReleaseDate(), book.getOverView() );
34
34