Bonjour,

J'aimerai a partir d’éclipse me connecter à l'AS400.
J'ai téléchargé la Toolbox d'IBM et j'ai importer les différents .jar dans mon projet.

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
 
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
 
 
public class test {
 
	/**
         * @param args
         * @throws SQLException 
         */
	public static void main(String[] args) throws SQLException {
		java.sql.DriverManager.registerDriver (new com.ibm.as400.access.AS400JDBCDriver ()); 
 
		Connection c = DriverManager.getConnection ("jdbc:as400:////ip//bibliotheque","INVITE","INVITE"); 
 
 
	}
 
}
Mon message d'erreur :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
 
 
Exception in thread "main" java.sql.SQLException: No suitable driver found for "jdbc:as400:////ip//bibliotheque
	at java.sql.DriverManager.getConnection(Unknown Source)
	at java.sql.DriverManager.getConnection(Unknown Source)
	at test.main(test.java:15)
Merci