Urgent accéder au base de données avec interface graphique
Fermé
Excelence bougherra
-
18 févr. 2016 à 10:16
Pierre1310 Messages postés 8564 Date d'inscription lundi 21 décembre 2015 Statut Membre Dernière intervention 21 juillet 2020 - 18 févr. 2016 à 10:19
Pierre1310 Messages postés 8564 Date d'inscription lundi 21 décembre 2015 Statut Membre Dernière intervention 21 juillet 2020 - 18 févr. 2016 à 10:19
A voir également:
- Urgent accéder au base de données avec interface graphique
- Changer carte graphique - Guide
- Formules excel de base - Guide
- Gigaset ne reconnait plus sa base - Forum telephonie fixe
- Tnt base de données vide - Forum TNT / Satellite / Réception
- Acceder au bios - Guide
1 réponse
Pierre1310
Messages postés
8564
Date d'inscription
lundi 21 décembre 2015
Statut
Membre
Dernière intervention
21 juillet 2020
649
Modifié par Pierre1310 le 18/02/2016 à 10:22
Modifié par Pierre1310 le 18/02/2016 à 10:22
Bonjour,
personnellement je travaille aussi sur eclipse mais avec sql serveur.
Problème de pc? => Nous donner des détails on est pas devin ...
Google est votre ami n'oubliez pas !
package gmaoMoulage.entities;
import java.io.Serializable;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.NamedQueries;
import javax.persistence.NamedQuery;
import javax.persistence.Table;
/**
- * * Entity implementation class for Entity : Communication * */ @NamedQueries({ @NamedQuery(name="sqlCommunicationTrue", query="SELECT c FROM Communication c WHERE ((c.etatCommunication='True') OR (c.etatCommunication='False')) ORDER BY c.idCommunication"),////////////////////////////// @NamedQuery(name="sqlCommunicationParIdCommunication", query="SELECT c FROM Communication c WHERE c.idCommunication=:idCommunication"),////////////////////////////// @NamedQuery(name="sqlCommunicationParNomCommunication", query="SELECT c FROM Communication c WHERE c.nomCommunication=:nomCommunication"), //////////////////////////////@NamedQuery(name="sqlCommunicationParEtatCommunication", query="SELECT c FROM Communication c WHERE c.etatCommunication=:etatCommunication"), //////////////////////////////@NamedQuery(name="sqlCommunicationChangementEtatTrue", query="UPDATE Communication SET etatCommunication = 'True' WHERE NomCommunication:=nomCommunication"), //////////////////////////////@NamedQuery(name="sqlCommunicationChangementEtatFalse", query="UPDATE Communication SET etatCommunication = 'False' WHERE NomCommunication:=nomCommunication") }) //////////////////////////////@Entity@Table(name = "Communication")//////////////////////////////public class Communication implements Serializable { //////////////////////////////private static final long serialVersionUID = 1L; ////////////////////////////// @Id @GeneratedValue( strategy = GenerationType.IDENTITY) @Column(name= "IdCommunication") private Long idCommunication; ////////////////////////////// @Column(name= "NomCommunication") private String nomCommunication; //////////////////////////////@Column(name= "EtatCommunication") private String etatCommunication; //////////////////////////////public Long getIdCommunication() { return idCommunication; } //////////////////////////////public void setIdCommunication(Long idCommunication) { this.idCommunication = idCommunication; } ////////////////////////////// public String getNomCommunication() { return nomCommunication; } //////////////////////////////public void setNomCommunication(String nomCommunication) { this.nomCommunication = nomCommunication; } //////////////////////////////public String getEtatCommunication() { return etatCommunication; } //////////////////////////////public void setEtatCommunication(String etatCommunication) { this.etatCommunication = etatCommunication; } }
personnellement je travaille aussi sur eclipse mais avec sql serveur.
Problème de pc? => Nous donner des détails on est pas devin ...
Google est votre ami n'oubliez pas !