ORACLE !!!!!!!

cs_Lucky44 Messages postés 14 Date d'inscription jeudi 18 avril 2002 Statut Membre Dernière intervention 9 septembre 2003 - 6 mai 2002 à 12:08
matt0029 Messages postés 1 Date d'inscription mardi 7 mai 2002 Statut Membre Dernière intervention 7 mai 2002 - 7 mai 2002 à 17:42
Comment lier Oracle et Java !!!

1 réponse

matt0029 Messages postés 1 Date d'inscription mardi 7 mai 2002 Statut Membre Dernière intervention 7 mai 2002
7 mai 2002 à 17:42
Do something like that ...

try
{
DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
Connection conn = DriverManager.getConnection("jdbc:oracle:thin:@MACHINENAME:1521:DATABASENAME","USER","PASSWORD");

// use the connection
todo
///
conn.commit();
}
catch (SQLException e)
{ e.printStackTrace();
System.out.println(e.getMessage());
}
finally
{
conn.close();
}
0
Rejoignez-nous