bonsoir

j'aurai besoin d'une aide pour du code java qui est sensé se connecter à une base de données HSQL ou faire des requête sql ; mais rien a faire, ça ne marche pas. Voici mon code


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
 
/*
 * 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 bd;
 
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.logging.Level;
import java.util.logging.Logger;
 
/**
 *
 * @author soso-pc
 */
public class NewClass {
 
 
 
    public void testC () throws ClassNotFoundException, SQLException{
 
        try {
            Class.forName("org.hsqldb.jdbcDriver").newInstance();
        } catch (InstantiationException ex) {
            Logger.getLogger(NewClass.class.getName()).log(Level.SEVERE, null, ex);
        } catch (IllegalAccessException ex) {
            Logger.getLogger(NewClass.class.getName()).log(Level.SEVERE, null, ex);
        }
 
        Connection connexion = DriverManager.getConnection("jdbc:hsqldb:file:base4", "SA",  "");
 
        Statement statement = connexion.createStatement();
        statement.executeUpdate("INSERT INTO LesUsagers (nom, prenom) VALUES ( 'XXXX', 'XXX')");
 
        //statement.executeQuery("SHUTDOWN");
        statement.close();
        connexion.close() ;
 
 
    }
}
page principal

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
 
public class BD {
 
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) throws ClassNotFoundException, InstantiationException, IllegalAccessException, SQLException {
        // TODO code application logic here
 
      NewClass vvv = new NewClass();    
        vvv.testC();
 
 
 
    }
 
}
Merci