*
*/
public int ajouter() throws DataFormatException, SQLException
{
if((_titre == null) || (_realisateur.getPrenom() == null) || (_realisateur.getNom() == null))
throw new DataFormatException("Les attributs titre et realisateur doivent etre renseignes.");
// Ajout dans la base de donnees
CallableStatement cst = _DB.prepareCall("{? = call majVideotheque.ajouterFilm(?, ?, ?)}");
cst.setString(2, _titre);
cst.setString(3, _realisateur.getNom() );