i have an error when i try to connect to my database

1
0
-1

i ve added a new connector "Access 2010 JDBC 4 database query " Driver :" sun.jdbc.odbc.JdbcOdbcDriver" URL:"jdbc:odbc:produits" {produits the name of my database} Username :"root" the query is "SELECT * FROM tech" the resultSet is a Script

while (resultSet.next()){
        List sousListe = new ArrayList();
        sousListe.add(resultSet.getString(1));
result.add(sousListe);
}
return result;

and it doesn't work help pleaaaaase

No answers yet.
Notifications