前提・実現したいこと
DTOを使ってsetした値をgetしたい
発生している問題・エラーメッセージ
mullpointer
該当のソースコード
java
1public DTO loginUser(String id,String password) { 2 DTO dto = new DTO(); 3 4 try { 5 connection = getConnection(); 6 7 statement = connection.prepareStatement("SELECT * FROM login WHERE id = ? and password = ?"); 8 statement.setString(1, id); 9 statement.setString(2, password); 10 ResultSet resultSet = statement.executeQuery(); 11 12 if (!resultSet.next()) { 13 return null; 14 } 15 else { 16 dto.setUserid(id); 17 } 18 19 } catch (SQLException e) { 20 e.printStackTrace(); 21 } finally { 22 allClose(statement, connection); 23 } 24 return dto; 25 26}
試したこと
ここに問題に対して試したことを記載してください。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー