Connexion java postgresql
Fermé
workflow
Messages postés
1
Date d'inscription
jeudi 14 septembre 2006
Statut
Membre
Dernière intervention
14 septembre 2006
-
14 sept. 2006 à 11:47
labiko445 - 27 sept. 2013 à 08:20
labiko445 - 27 sept. 2013 à 08:20
A voir également:
- Connexion java postgresql
- Gmail connexion - Guide
- Waptrick java football - Télécharger - Jeux vidéo
- Jeux java itel football - Télécharger - Jeux vidéo
- Java apk - Télécharger - Langages
- Hotmail connexion - Guide
3 réponses
vous pouvez essaiyez ce Code:
/**
* @(#)Mahmoud.java
*
*
* @author
* @version 1.00 2009/11/11
*/
import java.sql.DriverManager;
import java.sql.Connection;
import java.sql.SQLException;
public class JDBCExample {
public static void main(String[] arg) {
System.out.println("-------- PostgreSQL JDBC Connection Testing ------------");
try {
Class.forName("org.postgresql.Driver");
} catch (ClassNotFoundException e) {
System.out.println("Where is your PostgreSQL JDBC Driver? Include in your library path!");
e.printStackTrace();
return;
}
System.out.println("PostgreSQL JDBC Driver Registered!");
Connection connection = null;
try {
connection = DriverManager.getConnection("jdbc:postgresql://127.0.0.1:5432/test","mah", "123456");
} catch (SQLException e) {
System.out.println("Connection Failed! Check output console");
e.printStackTrace();
return;
}
if (connection != null)
System.out.println("You made it, take control your database now!");
else
System.out.println("Failed to make connection!");
}
}
/**
* @(#)Mahmoud.java
*
*
* @author
* @version 1.00 2009/11/11
*/
import java.sql.DriverManager;
import java.sql.Connection;
import java.sql.SQLException;
public class JDBCExample {
public static void main(String[] arg) {
System.out.println("-------- PostgreSQL JDBC Connection Testing ------------");
try {
Class.forName("org.postgresql.Driver");
} catch (ClassNotFoundException e) {
System.out.println("Where is your PostgreSQL JDBC Driver? Include in your library path!");
e.printStackTrace();
return;
}
System.out.println("PostgreSQL JDBC Driver Registered!");
Connection connection = null;
try {
connection = DriverManager.getConnection("jdbc:postgresql://127.0.0.1:5432/test","mah", "123456");
} catch (SQLException e) {
System.out.println("Connection Failed! Check output console");
e.printStackTrace();
return;
}
if (connection != null)
System.out.println("You made it, take control your database now!");
else
System.out.println("Failed to make connection!");
}
}
Bonjour,
dis mois stp est ce que tu as trouvé la solution ? si oui j'aimerais bien avoir le code correcte car moi aussi jessaie de me connecter mais je ne sais pas du tout comment faire !!
Merci
dis mois stp est ce que tu as trouvé la solution ? si oui j'aimerais bien avoir le code correcte car moi aussi jessaie de me connecter mais je ne sais pas du tout comment faire !!
Merci