I'm using ResultSet java.sql.Statement.executeQuery(String sql) throws SQLException
When I call this method, it is accent sensitive. How can I ignore this ?
String nom = "Labbe";// i want to find here "Labbe" and "Labbé" !
ResultSet resultSet = statement.executeQuery("Select * from Personne P Where P.nom = "+ nom);