cloudsdk
(usa Outra)
Enviado em 05/10/2015 - 15:36h
Estou fazendo um trabalho de faculdade e não estou conseguindo inserir dados mysql no netbeans.
Meu código esta assim:
public boolean incluir() {
try {
if (!estaConectado()) {
conecta();
}
stmt = objCon.createStatement();
sql = "INSERT INTO clientes ("
+ "codigo,"
+ "nome,"
+ "cpf,"
+ "telefone,"
+ "endereco,"
+ "cidade,"
+ "status "
+ ") VALUES ("
+ this.getCodigo() + ", '"
+ this.getNome() + "', '"
+ this.getCPF() + "', "
+ this.getTelefone() + ", '"
+ this.getEndereco() + "', "
+ this.getCidade() + ", "
+ this.getStatus()
+ ")";
stmt.executeUpdate(sql);
stmt.close();
System.out.print(this.sql);
return true;
} catch (SQLException objErro) {
JOptionPane.showMessageDialog(null,
"Não foi possível executar a Query /n"
+ objErro.getMessage() + "/n"
+ sql
);
return false;
}
}