Mysql
 sql >> Database >  >> RDS >> Mysql

java.sql.SQLException:valore argomento non valido:java.io.NotSerializableException

Modifica il tuo codice in

static public ResultSet getData(String sql, String username, String password)
        throws ClassNotFoundException, SQLException {
    PreparedStatement pst = con.prepareStatement(sql);
    pst.setString(1, username);
    pst.setString(2, password);
    ResultSet rs = pst.executeQuery();
    return rs;
}

impostare l'oggetto modello sul parametro dell'istruzione preparata non ha senso.