J'ai ajouté le pilote jdbc à mon classpath autant que je sache à dire que j'ajouté ce qui suit à mon .profileEssayer d'utiliser le pilote JDBC pour postgresql mais il ne fonctionne pas
export CLASSPATH = $ CLASSPATH: SITUER//the/jarfile.jar
Quand je compile mon programme java je reçois toujours cette erreur
javac v9.java
v9.java:8: <identifier> expected
Class.forName("org.postgresql.Driver");//load the driver
^
v9.java:8: illegal start of type
Class.forName("org.postgresql.Driver");//load the driver
^
2 errors
ce me rend fou, toute aide serait génial. J'utilise Mac OS X Snow Leopard
Le programme java est ici
import java.sql.*;
public class v9
{
String dbURL = "jdbc:postgresql:mydb";
String user = "UserName";
String password = "pswd";
C try
{
Class.forName("org.postgresql.Driver");//load the driver
// Connect to the database
Connection DBconn = DriverManager.getConnection(dbURL, user, password);
}
catch (Exception e)
{
e.printStackTrace();
}
}
Erreur n'a rien à voir avec jdbc & progrès, mais mauvais code java tapé. Big lettre "C" avant "try" –