()
| 125 | } |
| 126 | |
| 127 | @Override |
| 128 | public void deleteAll() throws Exception { |
| 129 | try (Connection conn = ds.getConnection();) |
| 130 | { |
| 131 | String sql = "DELETE FROM user_info "; |
| 132 | PreparedStatement pstmt = conn.prepareStatement(sql); |
| 133 | pstmt.executeUpdate(); |
| 134 | } |
| 135 | } |
| 136 | } |
nothing calls this directly
no outgoing calls
no test coverage detected