Probleme Requête SQL sur JAVA
Fermé
tounsii007
Messages postés
14
Date d'inscription
samedi 29 octobre 2016
Statut
Membre
Dernière intervention
23 mai 2017
-
20 nov. 2016 à 13:13
tounsii007 Messages postés 14 Date d'inscription samedi 29 octobre 2016 Statut Membre Dernière intervention 23 mai 2017 - 20 nov. 2016 à 13:49
tounsii007 Messages postés 14 Date d'inscription samedi 29 octobre 2016 Statut Membre Dernière intervention 23 mai 2017 - 20 nov. 2016 à 13:49
A voir également:
- Probleme Requête SQL sur JAVA
- Waptrick java football - Télécharger - Jeux vidéo
- Jeux java itel football - Télécharger - Jeux vidéo
- Java apk - Télécharger - Langages
- Télécharger jeux java gameloft gratuit - Forum Mobile
- Java décompiler - Télécharger - Langages
2 réponses
KX
Messages postés
16753
Date d'inscription
samedi 31 mai 2008
Statut
Modérateur
Dernière intervention
25 novembre 2024
3 019
20 nov. 2016 à 13:37
20 nov. 2016 à 13:37
Bonjour,
Est-ce que tu as fait les GRANT sur la table komponent pour que le user utilisé par ton programme puisse y accéder ?
Est-ce que tu as fait les GRANT sur la table komponent pour que le user utilisé par ton programme puisse y accéder ?
tounsii007
Messages postés
14
Date d'inscription
samedi 29 octobre 2016
Statut
Membre
Dernière intervention
23 mai 2017
20 nov. 2016 à 13:49
20 nov. 2016 à 13:49
j'ai résolu le problème avec cette modification dans la requête SQL :
mercii
public List<meinpack.Ticket> getKompTicket(Integer id) throws SQLException { String sql = "SELECT tid, ticket.name , autor " + " FROM ticket " + "INNER JOIN komponent ON komponente= kompid " + "WHERE( ticket.komponente='"+id+"');"; try (PreparedStatement ps = conn.prepareStatement(sql)) { ResultSet rs = ps.executeQuery(); List<meinpack.Ticket> Komp = new ArrayList<>(); while (rs.next()) { Komp.add(new meinpack.Ticket (rs.getInt("tid"),rs.getString("name"),rs.getString("autor"))); } return Komp; } }
mercii