IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

NetBeans Platform Java Discussion :

Netbeans + Mysql


Sujet :

NetBeans Platform Java

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre averti Avatar de Theeyah
    Femme Profil pro
    Etudiante en informatique
    Inscrit en
    Avril 2018
    Messages
    19
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Âge : 30
    Localisation : France, Charente (Poitou Charente)

    Informations professionnelles :
    Activité : Etudiante en informatique
    Secteur : High Tech - Matériel informatique

    Informations forums :
    Inscription : Avril 2018
    Messages : 19
    Par défaut Netbeans + Mysql
    Bonjour,

    Dans le cadre de mes études j'ai une applicationt à réaliser mais je rencontre énormément de problème. J'ai pu me connecter à ma base de donnée grâce à l'extension pour java(msql). Je peux me connecter à ma base de donnée et faire des requêtes sans problème. Mais étant débutante sous Java. Je ne sais pas comment intégré dans mon onglet "source". Les informations qui sont dans ma base de donnée dans les JComboBox j'en possède 7 au total.

    Merci encore.

  2. #2
    Membre Expert Avatar de yildiz-online
    Homme Profil pro
    Architecte de domaine
    Inscrit en
    Octobre 2011
    Messages
    1 447
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Belgique

    Informations professionnelles :
    Activité : Architecte de domaine

    Informations forums :
    Inscription : Octobre 2011
    Messages : 1 447
    Par défaut
    La librairie permettant de se connecter à MySQL (connectorJ) permet également, entre autre, de réaliser les fonction d'utilisation (create read update delete).

    https://docs.oracle.com/javase/tutor...ics/index.html

    C'est un standard, donc aucunement lié à netbeans

  3. #3
    Membre averti Avatar de Theeyah
    Femme Profil pro
    Etudiante en informatique
    Inscrit en
    Avril 2018
    Messages
    19
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Âge : 30
    Localisation : France, Charente (Poitou Charente)

    Informations professionnelles :
    Activité : Etudiante en informatique
    Secteur : High Tech - Matériel informatique

    Informations forums :
    Inscription : Avril 2018
    Messages : 19
    Par défaut
    Oui mais maintenant j'ai l'erreur suivante :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    Thu May 03 09:25:39 CEST 2018 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.
    Je crois que mon Wampserver pète un plomb.

  4. #4
    Membre Expert Avatar de yildiz-online
    Homme Profil pro
    Architecte de domaine
    Inscrit en
    Octobre 2011
    Messages
    1 447
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Belgique

    Informations professionnelles :
    Activité : Architecte de domaine

    Informations forums :
    Inscription : Octobre 2011
    Messages : 1 447
    Par défaut
    ajoute le param useSSL=false dans ta connection string

  5. #5
    Membre averti Avatar de Theeyah
    Femme Profil pro
    Etudiante en informatique
    Inscrit en
    Avril 2018
    Messages
    19
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Âge : 30
    Localisation : France, Charente (Poitou Charente)

    Informations professionnelles :
    Activité : Etudiante en informatique
    Secteur : High Tech - Matériel informatique

    Informations forums :
    Inscription : Avril 2018
    Messages : 19
    Par défaut
    Excuse-moi mais ou je le met extactement (désolé je suis débutante) @_@

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    /*
     * To change this license header, choose License Headers in Project Properties.
     * To change this template file, choose Tools | Templates
     * and open the template in the editor.
     */
    package myadressip;
     
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import javafx.scene.control.Alert;
    import myadressip.Connexion;
     
    /**
     *
     * @author Stecy G KAYELE
     */
    public class Logiciel extends javax.swing.JFrame 
    {
        /**
         * con
         */
        Connexion con=null;
     
        /**
         * pst
         */
        PreparedStatement pst = null;
     
        /**
         * rs
         */
        ResultSet rs = null;
     
        /**
         * Creates new form Logiciel
         */
        public Logiciel()
        { 
            initComponents();
     
            String id_loc="";
            String cp="";
            String commune="";
     
            try
            {
                this.con=new Connexion("jdbc:mysql://localhost:3308/mysql","root","");
                this.pst = this.con.connexion.prepareStatement("select id_loc, CP, Commune from localisation");
                this.rs=this.pst.executeQuery();
     
                while(rs.next())
                {
                    id_loc = this.rs.getString("id_loc");
                    cp = this.rs.getString("CP");
                    commune = this.rs.getString("Commune");
     
                    this.box_localisation.addItem(id_loc+cp+commune);
                }
            }
            catch(Exception ex)
            {
                String test = ex.getMessage();
            }
        }  
     
        /**
         * This method is called from within the constructor to initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is always
         * regenerated by the Form Editor.
         */
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">                          
        private void initComponents() {
     
            jLabel1 = new javax.swing.JLabel();
            box_localisation = new javax.swing.JComboBox<>();
     
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
     
            jLabel1.setText("Localisation");
     
            box_localisation.setModel(new javax.swing.DefaultComboBoxModel<>(new String[] { "Item 1", "Item 2", "Item 3", "Item 4" }));
            box_localisation.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    box_localisationActionPerformed(evt);
                }
            });
     
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addContainerGap()
                    .addComponent(jLabel1)
                    .addGap(58, 58, 58)
                    .addComponent(box_localisation, javax.swing.GroupLayout.PREFERRED_SIZE, 151, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addContainerGap(126, Short.MAX_VALUE))
            );
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(57, 57, 57)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jLabel1)
                        .addComponent(box_localisation, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addContainerGap(223, Short.MAX_VALUE))
            );
     
            pack();
        }// </editor-fold>                        
     
        private void box_localisationActionPerformed(java.awt.event.ActionEvent evt) {                                                 
            // TODO add your handling code here:
        }                                                
     
        /**
         * @param args the command line arguments
         */
        public static void main(String args[]) {
            /* Set the Nimbus look and feel */
            //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
            /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
             * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html 
             */
            try {
                for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
                    if ("Nimbus".equals(info.getName())) {
                        javax.swing.UIManager.setLookAndFeel(info.getClassName());
                        break;
                    }
                }
            } catch (ClassNotFoundException ex) {
                java.util.logging.Logger.getLogger(Logiciel.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (InstantiationException ex) {
                java.util.logging.Logger.getLogger(Logiciel.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (IllegalAccessException ex) {
                java.util.logging.Logger.getLogger(Logiciel.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (javax.swing.UnsupportedLookAndFeelException ex) {
                java.util.logging.Logger.getLogger(Logiciel.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            }
            //</editor-fold>
     
            /* Create and display the form */
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new Logiciel().setVisible(true);
                }
            });
        }
     
        // Variables declaration - do not modify                     
        private javax.swing.JComboBox<String> box_localisation;
        private javax.swing.JLabel jLabel1;
        // End of variables declaration                   
    }

  6. #6
    Membre Expert Avatar de yildiz-online
    Homme Profil pro
    Architecte de domaine
    Inscrit en
    Octobre 2011
    Messages
    1 447
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Belgique

    Informations professionnelles :
    Activité : Architecte de domaine

    Informations forums :
    Inscription : Octobre 2011
    Messages : 1 447
    Par défaut
    jdbc:mysql://localhost:3308/mysql?useSSL=false

    Autre soucis:
    Avoir une classe qui mélange les responsabilités d'affichage, de traitement et de persistance n'est pas une bonne pratique.

Discussions similaires

  1. Manipulation des tables Java-netbeans mysql
    Par UncleSamzer dans le forum JDBC
    Réponses: 1
    Dernier message: 12/08/2017, 18h15
  2. jframe bouton modifier:netbeans mysql
    Par ibrahima lamine dans le forum NetBeans
    Réponses: 1
    Dernier message: 28/09/2015, 15h18
  3. NetBeans MySQL javax.naming.NamingException
    Par bellouk dans le forum JPA
    Réponses: 0
    Dernier message: 26/11/2012, 11h01
  4. NetBeans, MySQL server et JDBC
    Par badoumba dans le forum NetBeans
    Réponses: 3
    Dernier message: 05/04/2012, 08h23
  5. Réponses: 5
    Dernier message: 18/10/2007, 14h40

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo