Nn je n'utilise pas to_date()
Voici mon code dans mon applet:
java.util.Date d=null;
try
{
d = new SimpleDateFormat("d/M/y",Locale.FRANCE)
.parse(jTextFieldDate.getText());
if (d==null)
throw new Exception();
}
catch (Exception e)
{
JOptionPane.showMessageDialog(null,
"Rentrez une date au format jj/mm/aaaa" );
return;
}
et voici mon code pour insérer :
package BD;
import java.sql.*;
import java.util.Date;
public class Insertion {
private static Connection c;
private static Statement stm;
public static void insertResa( int numPersonne, int numGroupe, String responsabilite,Date date, String nomPersonne, String prenomPersonne, String civilite ) throws SQLException
{
try
{
// récupération de la connexion
c = Connect.getCon();
stm = c.createStatement();
String sql = "INSERT into MEMBRE VALUES (" + numPersonne + "," + numGroupe + ",'" + responsabilite + "'," + date + ",'" + nomPersonne + "','" + prenomPersonne + "','" + civilite + "')";
// Execution de la requete
stm.executeUpdate(sql);
stm.close();
}
catch(SQLException sqlE)
{
System.out.println("Sql Erreur " + sqlE.getMessage());
throw sqlE;
}
catch(Exception e)
{
System.out.println("Erreur " + e.getMessage());
}
}
}
Merci de prendre du temps de m'aider