##初めに
データベースにアクセスして、既存のテーブルの日付を入れる部分のnullに、updateで更新したい。
##環境
windows10
eclipse
Tomcat 9
##ソースコード
サーブレット
java
1public class DocumentInfoInServlet extends HttpServlet { 2 private returnInfoInEntity entity; 3 protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { 4 try { 5 //文字コード指定 6 request.setCharacterEncoding("UTF-8"); 7 //actionを取得 8 String action = request.getParameter("action"); 9 10 //資料返却DAO 11 DocumentInfoInDAO documentInfoIndao = new DocumentInfoInDAO(); 12 //確認ボタン 13 if(action.equals("documentInfo")) { 14 int member_id = Integer.parseInt(request.getParameter("member_id")); 15 int doc_id = Integer.parseInt(request.getParameter("doc_id")); 16 String return_date_year = request.getParameter("return_date_year"); 17 String return_date_month = request.getParameter("return_date_month"); 18 String return_date_day = request.getParameter("return_date_day"); 19 20 //日付の連結とsql型の日付に変換 21 String date = return_date_year+"-"+return_date_month+"-"+return_date_day; 22 Date return_date = Date.valueOf(date); 23 24 entity = new returnInfoInEntity(member_id,doc_id,return_date); 25 request.setAttribute("returnInfoIn",entity); 26 gotoPage(request, response, "returnInfoConfirmation.jsp"); 27 }else if(action.equals("returnDocument")) { 28 documentInfoIndao.returnDocument(entity.getMember_id(),entity.getDoc_id(),entity.getReturn_date()); 29 //request.setAttribute("confirm",entity2); 30 gotoPage(request, response, "documentInfoInComp.jsp"); 31 }else if(action.equals("documentInfoback")) { 32 gotoPage(request, response, "lind.jsp"); 33 }else if(action.equals("returncomp")) { 34 gotoPage(request, response, "lind.jsp"); 35 } 36 37 38 }catch(NumberFormatException e) { 39 e.printStackTrace(); 40 JOptionPane.showMessageDialog(null, "入力してください","エラー",JOptionPane.ERROR_MESSAGE); 41 gotoPage(request, response, "documentInfoIn.jsp"); 42 } 43 } 44 protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { 45 // TODO Auto-generated method stub 46 doGet(request, response); 47 } 48 private void gotoPage(HttpServletRequest request, HttpServletResponse response, String page) throws ServletException, IOException { 49 RequestDispatcher rd = request.getRequestDispatcher(page); 50 rd.forward(request, response); 51 52 }
DAO
java
1import java.sql.Connection; 2import java.sql.Date; 3import java.sql.DriverManager; 4import java.sql.PreparedStatement; 5import java.sql.SQLException; 6 7public class DocumentInfoInDAO { 8 private Connection con; 9 public DocumentInfoInDAO(){ 10 getConnection(); 11 } 12 public void returnDocument(int member_id,int doc_id,Date return_date) { 13 if(con == null) 14 getConnection(); 15 PreparedStatement st = null; 16 try { 17 //返却日を入力 18 19 String sql="UPDATE rental set return_date = ? where member_id = ? AND doc_id = ?;"; 20 st=con.prepareStatement(sql); 21 st.setDate(1, return_date); 22 st.setInt(2, member_id); 23 st.setInt(3, doc_id); 24 }catch(Exception e) { 25 e.printStackTrace(); 26 }finally { 27 try { 28 if(st != null) st.close(); 29 close(); 30 }catch(Exception e) { 31 e.printStackTrace(); 32 } 33 } 34 } 35 private void getConnection(){ 36 try { 37 Class.forName("org.postgresql.Driver"); 38 39 String url = "jdbc:postgresql:sample"; 40 String user = "postgres"; 41 String pass = "sample"; 42 43 con = DriverManager.getConnection(url, user, pass); 44 45 }catch(Exception e) { 46 47 } 48 } 49 50 private void close() throws SQLException{ 51 if(con!=null) { 52 con.close(); 53 con=null; 54 } 55 }
##試したこと
このコードを実行後、コマンドプロンプトでselect文で繁栄されているかを確認すると、
更新されていない。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/16 14:20