fix: 🐛 Fix possible SQL exceptions
Fixed possible SQLExceptions by using the correct IDP_IDP and SP_ID column names where it was missing. Also, removed usages of ResultSet scrolling functionality, to prevent the SQL exceptions raised when scrolling is not available.pull/1580/head
parent
c252db224c
commit
b3bd9e94c7
|
@ -159,24 +159,32 @@ public class ProxyStatisticsFilter extends PerunRequestFilter {
|
||||||
}
|
}
|
||||||
|
|
||||||
private int extractSpId(Connection c, String spIdentifier) throws SQLException {
|
private int extractSpId(Connection c, String spIdentifier) throws SQLException {
|
||||||
String getSpIdQuery = "SELECT * FROM " + serviceProvidersMapTableName + " WHERE identifier= ?";
|
String query = "SELECT " + spIdColumnName + " FROM " + serviceProvidersMapTableName +
|
||||||
|
" WHERE identifier = ? LIMIT 1";
|
||||||
|
|
||||||
try (PreparedStatement preparedStatement = c.prepareStatement(getSpIdQuery)) {
|
try (PreparedStatement preparedStatement = c.prepareStatement(query)) {
|
||||||
preparedStatement.setString(1, spIdentifier);
|
preparedStatement.setString(1, spIdentifier);
|
||||||
ResultSet rs = preparedStatement.executeQuery();
|
ResultSet rs = preparedStatement.executeQuery();
|
||||||
rs.first();
|
if (rs.next()) {
|
||||||
return rs.getInt("spId");
|
return rs.getInt(spIdColumnName);
|
||||||
|
} else {
|
||||||
|
throw new SQLException("No result found");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private int extractIdpId(Connection c, String idpEntityId) throws SQLException {
|
private int extractIdpId(Connection c, String idpEntityId) throws SQLException {
|
||||||
String getIdPIdQuery = "SELECT * FROM " + identityProvidersMapTableName + " WHERE identifier = ?";
|
String query = "SELECT " + idpIdColumnName + " FROM " + identityProvidersMapTableName +
|
||||||
|
" WHERE identifier = ? LIMIT 1";
|
||||||
|
|
||||||
try (PreparedStatement preparedStatement = c.prepareStatement(getIdPIdQuery)) {
|
try (PreparedStatement preparedStatement = c.prepareStatement(query)) {
|
||||||
preparedStatement.setString(1, idpEntityId);
|
preparedStatement.setString(1, idpEntityId);
|
||||||
ResultSet rs = preparedStatement.executeQuery();
|
ResultSet rs = preparedStatement.executeQuery();
|
||||||
rs.first();
|
if (rs.next()) {
|
||||||
return rs.getInt("idpId");
|
return rs.getInt(idpIdColumnName);
|
||||||
|
} else {
|
||||||
|
throw new SQLException("No result found");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue