Insertion dans une base de données

Fermé
fati - 13 août 2012 à 14:16
mimo18 Messages postés 9 Date d'inscription mardi 14 août 2012 Statut Membre Dernière intervention 4 septembre 2012 - 14 août 2012 à 11:38
Bonjour,

je veux savoir comment insérer des valeurs dans une table mysql à partir d'une application java
merci d'avance

2 réponses

Guillaume Ki Messages postés 8 Date d'inscription lundi 13 août 2012 Statut Membre Dernière intervention 13 août 2012
13 août 2012 à 14:33
import java.sql.*;

Connection con;
try {
con = DriverManager.getConnection(url,
userid, password);

} catch(SQLException ex) {
System.err.println("SQLException: " + ex.getMessage());
}

String insert = "insert intoTABLE values(VAL1, VAL2)";

try {
stmt = con.createStatement();
stmt.executeUpdate(insert);
stmt.close();
con.close();

} catch(SQLException ex) {
System.err.println("SQLException: " + ex.getMessage());
}
0
mimo18 Messages postés 9 Date d'inscription mardi 14 août 2012 Statut Membre Dernière intervention 4 septembre 2012
14 août 2012 à 11:38
merci bq :)
0