Yes, the problem seem to be this.
i have commented also the line related to the closure of the Statement and now it seem correct.
Code:
public ResultSet EseguiLettura(String sSqlToExecute) throws SQLException
{
Statement stmt = conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE);
ResultSet rs = stmt.executeQuery(sSqlToExecute);
Leave a comment: