Connection
Fermé
elhem...
Messages postés
17
Date d'inscription
dimanche 27 octobre 2013
Statut
Membre
Dernière intervention
5 septembre 2018
-
13 janv. 2014 à 13:00
elhem... Messages postés 17 Date d'inscription dimanche 27 octobre 2013 Statut Membre Dernière intervention 5 septembre 2018 - 13 janv. 2014 à 13:41
elhem... Messages postés 17 Date d'inscription dimanche 27 octobre 2013 Statut Membre Dernière intervention 5 septembre 2018 - 13 janv. 2014 à 13:41
A voir également:
- Connection
- Gmail connection - Guide
- Hotmail connection - Guide
- Facebook connection - Guide
- Connection chromecast - Guide
- Connection privée - Guide
1 réponse
elhem...
Messages postés
17
Date d'inscription
dimanche 27 octobre 2013
Statut
Membre
Dernière intervention
5 septembre 2018
13 janv. 2014 à 13:41
13 janv. 2014 à 13:41
c'est mon code
import java.sql.*;
class Test {
public static void main(String[] args) {
Connection con=null;
Statement stmt=null;
ResultSet rs=null;
try {
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
}catch(ClassNotFoundException e)
{System.out.println("impossible de charger le drivers");}
try {
String url="jdbc:odbc:Database3";
con=DriverManager.getConnection(url);
}catch(SQLException e)
{System.out.println("connexion 0 :/ ");}
try {
stmt=con.createStatement();
String req="select * from Article";
rs=stmt.executeQuery(req);
}catch(SQLException e){e.printStackTrace(); }
try {
rs.close();
stmt.close();
con.close();
} catch(SQLException e){} } }
import java.sql.*;
class Test {
public static void main(String[] args) {
Connection con=null;
Statement stmt=null;
ResultSet rs=null;
try {
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
}catch(ClassNotFoundException e)
{System.out.println("impossible de charger le drivers");}
try {
String url="jdbc:odbc:Database3";
con=DriverManager.getConnection(url);
}catch(SQLException e)
{System.out.println("connexion 0 :/ ");}
try {
stmt=con.createStatement();
String req="select * from Article";
rs=stmt.executeQuery(req);
}catch(SQLException e){e.printStackTrace(); }
try {
rs.close();
stmt.close();
con.close();
} catch(SQLException e){} } }