前提・実現したいこと
質問を連投し、失礼します。
現在自己学習でjavaのwebアプリケーションを作成しています。
ツールはeclipse, mariaDBを使用しています。
アプリケーションの内容は、体調不良の方を対象に症状・体温をプルダウンで選択してもらい(Sym_fevテーブルにデータ格納)、
その組み合わせに合致したレコードを一覧画面にSymptomテーブルから抽出する(抽出するデータは症状カラム(symptom)・体温カラム(fever_degree)のデータに加え、対処法(handle_information)カラムのデータも取得)
といった内容です。
今回は症状(symptom_name)と体温(fever_degree)を更新画面で更新する(sym_fevテーブルのsymptom_nameとfever_degreeを更新)際の不具合について質問をさせて頂きます。
(追加画面の「追加」ボタンをクリックすると、
トップページに遷移するため「追加完了」ページはございません。)
発生している問題・エラーメッセージ
DB内の最新のレコードを更新したいのですが、
最新データ(もしくは一番大きいid番号)を更新するsql文の書き方が不明点でございます。
sym_fevテーブル内のカラム情報
create table symptom (
-> symptom_id integer AUTO_INCREMENT,
-> symptom_name varchar(30) not null,
-> fever_degree varchar(15) not null,
-> handle_information varchar(50) not null,
-> reg_datetime datetime not null,
-> upd_datetime datetime not null,
-> primary key(symptom_id));
該当のソースコード
SymptomUpdateServlet.java(データの更新を行うservlet) package webapp.SymptomManagement; import java.io.IOException; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import web.basic.symFev.beans.SymFevInfoBean; /** * Servlet implementation class SalesUpdateServlet */ @WebServlet("/SymptomUpdateServlet") public class SymptomUpdateServlet extends HttpServlet { private static final long serialVersionUID = 1L; /** * @see HttpServlet#HttpServlet() */ public SymptomUpdateServlet() { super(); // TODO Auto-generated constructor stub } /** * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response) */ protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { System.out.println("SymptomUpdateServlet.doGet()"); System.out.println("【症状更新画面表示】"); SymFevInfoBean symFevInfo = new SymFevInfoBean(); // ■DB接続 Connection conn = null; PreparedStatement ps = null; ResultSet rs = null; // 接続情報 String url="jdbc:mariadb://localhost:3306/condition_management"; String user="〇〇"; String password="〇〇"; try { // 接続処理 conn = DriverManager.getConnection(url, user, password); // ■検索処理実行 // SQL作成 String sql = "SELECT\r\n" + " sym_fev.information_id,\r\n" + " sym_fev.symptom_name,\r\n" + " sym_fev.fever_degree \r\n" + "FROM\r\n" + " sym_fev"; System.out.println(sql); // SQL準備 ps = conn.prepareStatement(sql); // SQL実行 rs = ps.executeQuery(); // データを読込み、売上情報に設定する System.out.println("<症状情報を設定>"); while(rs.next()) { // データ読込 int informationId = rs.getInt("information_id"); String symptomName = rs.getString("symptom_name"); String feverDegree = rs.getString("fever_Degree"); // 売上情報(JavaBeans)に追加 symFevInfo.setInformationId(informationId); symFevInfo.setSymptomName(symptomName); symFevInfo.setFeverDegree(feverDegree); System.out.println(symFevInfo); } } catch(SQLException e) { // 接続失敗時の処理 e.printStackTrace(); } finally { try { // ■クローズ処理 // 検索結果 if(rs!=null) { rs.close(); } // SQL文 if(ps!=null) { ps.close(); } // DB接続 if(conn!=null) { conn.close(); } } catch (SQLException e) { e.printStackTrace(); } } // 【表示値を設定する】 request.setAttribute("symFevInfo", symFevInfo); // ■更新画面処理に遷移 request.getRequestDispatcher("Sym_fevUpdate.jsp").forward(request, response); } /** * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response) */ protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { System.out.println("ShopInfoServlet.doPost()"); // 【文字化け対応】 request.setCharacterEncoding("utf-8"); // 【画面入力値を取得し、店舗情報に設定する】 // 画面入力値を取得 String symptomName = request.getParameter("symptom_name"); String feverDegree = request.getParameter("fever_degree"); // 取得できたか確認 System.out.println("symptomName="+symptomName); System.out.println("feverDegree="+feverDegree); // 【店舗情報を更新する】 // ■DB接続 Connection conn = null; PreparedStatement ps = null; // 接続情報 String url="jdbc:mariadb://localhost:3306/condition_management"; String user="〇〇"; String password="〇〇"; try { // 接続処理 conn = DriverManager.getConnection(url, user, password); <未解決の箇所> // ■更新処理実行 // SQL作成 // information_idが一番大きいデータを更新(または最新日のデータ) String sql = "UPDATE sym_fev SET symptom_name = ?, fever_degree = ?" //where reg_datetime = "; System.out.println(sql); // SQL準備 ps = conn.prepareStatement(sql); // パラメータ設定(画面入力値を設定していく。) ps.setString(1, symptomName); // 症状名 ps.setString(2, feverDegree); // 体温 // トランザクション開始 conn.setAutoCommit(false); // SQL実行 ps.executeUpdate(); // コミット conn.commit(); System.out.println("ここまで来てる。"); } catch(SQLException e) { // 接続失敗時の処理 e.printStackTrace(); try { // ロールバック conn.rollback(); } catch (SQLException e1) { e1.printStackTrace(); } } finally { try { // ■クローズ処理 // SQL文 if(ps!=null) { ps.close(); } // DB接続 if(conn!=null) { conn.close(); } } catch (SQLException e) { e.printStackTrace(); } } // ■トップページにリダイレクト response.sendRedirect("TopPage.html"); } } Sym_fevUpdate.jsp(更新画面の見た目) <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>体調管理アプリ</title> </head> <body> <form action="SymptomUpdateServlet" method="post"> <div> <label for="symptomInfo">症状<input type="hidden" name="symptom" value="${symFevInfo.symptomName}"></label> <select name="symptom_name"> <option value="症状">症状</option> <option value="倦怠感">倦怠感</option> <option value="吐き気">吐き気</option> <option value="味覚・嗅覚の消失">味覚・嗅覚の消失</option> <option value="呼吸困難">呼吸困難</option> </select> </div> <div> <label for="feverDegreeInfo">体温<input type="hidden" name="fever" value="${symFevInfo.feverDegree}"></label> <select name="fever_degree"> <option value="体温">体温</option> <option value="低体温">36.0℃未満</option> <option value="通常体温">36.0 ~ 36.5℃</option> <option value="弱微熱">36.6 ~ 37.0℃</option> <option value="発熱">37.1℃以上</option> </select> </div> <input type="submit" value="更新"> </form> <form action="" method="post"> <input type="submit" value="一覧画面"> </form> <form action="" method="post"> <input type="submit" value="ログアウト"> </form> </body> </html>
疑問点
max関数を用いてidまたは日付の一番大きい値をwhere句で指定して更新しようと思ったが
集約関数のためwhere句の横には書けない。
→この場合、一つのレコードを特定して更新をかけるということは不可能なのでしょうか。
もしよろしければご教授頂きたいです。
よろしくお願いします。
補足情報(FW/ツールのバージョンなど)
バージョン:java11
Tomcat9
xampp control panel v3.3.0
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー