Ola galera,
é o seguinte a minha conexão é aceita mas na hr que eu salvo ele não mostra nd na tabela fiz o insert mas nd, não aparece nd!!!
segue:
[code]private void btnSalvarActionPerformed(java.awt.event.ActionEvent evt) throws SQLException {
try {
JTextComponent txt_NomeSegurado = null;
JTextComponent txt_End = null;
JTextComponent txt_Complmento = null;
JTextComponent cd_Produto = null;
JTextComponent cd_Codigo = null;
JTextComponent txt_Bairro = null;
JTextComponent val_Premio= null;
JTextComponent cd_CPF = null;
JTextComponent cd_Sexo = null;
JTextComponent cd_NumeroRes= null;
JTextComponent dt_Nascimento=null;
String query = ("INSERT INTO tbCadastro(Codigo, NomeSegurado, Data de Nascimento, Sexo, CPF, Endereco,Bairro,Numero,Complemento,Produto,Premio) VALUES('" + cd_Codigo.getText() + "' ,'" + txt_NomeSegurado.getText() + "', '" + dt_Nascimento.getText() + "', '" + cd_Sexo.getText() + "', '" + cd_CPF.getText() +"','" + txt_End.getText() + "', '" + txt_Bairro.getText() + "','" + txt_Complmento.getText() + "','" + cd_Produto.getText() + "','" + val_Premio.getText() + "')");
System.out.println("Query: " + query);
stm.executeUpdate(query);
} [/code]