Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

Diego Macêdo

Agenda de Contatos

Recommended Posts

Amigos,

 

estive pesquisando na internet alguma agenda de contatos em java para estudar e fazer meu trabalho e acabei achando esse aqui:

http://abhikumar163.googlepages.com/tutor_num2_teledir

 

Modifiquei o código para a conexão com o PostGre e traduzi as mensagens.

 

Rodei o programa e sempre que tento inserir, ele entra na exceção dizendo que devo verificar os campos.

 

Alguém poderia me dar uma ajuda?

 

import java.awt.*;
import java.awt.event.*;
import java.awt.FlowLayout;
import java.sql.*;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.JTextArea;
import javax.swing.JButton;
import javax.swing.JLabel;

public class telephoneDir extends JFrame implements ActionListener
{
static JLabel label1,label2,label3,sep;
static JButton addB,modify,delete,clear,browse;
static JTextField txtA1;
static JTextArea  txtA2;
static Connection con;
static Statement st1,st2;
static ResultSet rs1;
static telephoneDir phoneDir;

public telephoneDir()
   {
	 super("Agenda de Telefone :");
	 setLayout(new FlowLayout());
	 try{
		  Class.forName("org.postgresql.Driver");
		  con = DriverManager.getConnection("jdbc:postgresql://localhost:5432/contatos", "postgres", "123456");
		  st1=con.createStatement();
		  rs1=st1.executeQuery("select * from contatos");
		}
	catch(Exception e)
		{
		 System.out.println("Erro ao se conectar com o BD : "+e);
		}
	label1 = new JLabel("	   Nome:	");
	add(label1);
	txtA1 = new JTextField(15);
	add(txtA1);
	label2 = new JLabel("	   Telefone:	 ");
	add(label2);
	txtA2 = new JTextArea(1,15);
	add(txtA2);
	sep = new JLabel("-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-");
	add(sep);
	addB=new JButton("CADASTRAR");
	add(addB);
	browse=new JButton("LISTAR");
	add(browse);
	modify=new JButton("MODIFICAR");
	add(modify);
	delete=new JButton("DELETAR");
	add(delete);
	clear=new JButton("LIMPAR TEXTOS");
	add(clear);
	sep = new JLabel("-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-");
	add(sep);
	label3 = new JLabel("");
	add(label3);
	sep = new JLabel("-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-");
	add(sep);

	addB.addActionListener(this);
	browse.addActionListener(this);
	modify.addActionListener(this);
	delete.addActionListener(this);
	clear.addActionListener(this);
	txtA1.addActionListener(this);
   }
 public void actionPerformed(ActionEvent e)
	 {
		 if(e.getSource()==txtA1)
		  {
			  label3.setText("Primeiro Nome contendo");
			  String nam=txtA1.getText();
			  try
				{
				 st1.close();  //rs1.close();
				 st1=con.createStatement();
				 rs1=st1.executeQuery("Select * from contatos where nome Like '"+nam+"%'");
				 rs1.next();

			   txtA2.setText(rs1.getString("PhoneN"));

			  txtA1.setText(rs1.getString("UserName"));
				}
		   catch(Exception e2)
		   {
		   label3.setText("Nenhum nome encontrado com: "+nam);
		   }

		  }
		 if(e.getSource()==addB)
		  {
		  label3.setText("Registro adicionado ao BD!");
		  String nam=txtA1.getText();
		  String num=txtA2.getText();
		  try
		   {
			st2=con.createStatement();
			String query="insert into contatos values(NULL, '"+nam+"','"+num+"')";
			st2.executeUpdate(query);
			st2.close();
		   }
		  catch(Exception e2)
		   {
			label3.setText("Verifique os campos se estão corretos.");
		   }

		  }
		 if(e.getSource()==browse)
		  {
		   label3.setText("Ver PRÓXIMO registro no BD");
		   try
			{
			 if(rs1.next()==true)
			   {
				txtA2.setText(rs1.getString("PhoneN"));
				txtA1.setText(rs1.getString("UserName"));
			   }
			 else
			   {
				st1.close();		  //rs1.close();
				st1=con.createStatement();
			  rs1=st1.executeQuery("Select * from contatos");
				rs1.next();
				txtA2.setText(rs1.getString("PhoneN"));
				txtA1.setText(rs1.getString("UserName"));
			   }
			}
		   catch(Exception e2)
			{
			  label3.setText("Erro ao visualizar : "+e2);
			}
		  }
		 if(e.getSource()==modify)
		  {
		   label3.setText("Registro MODIFICADO com sucesso!");
		   try
			{
			 st2=con.createStatement();
			 String nam=txtA1.getText();
			 String num=txtA2.getText();
			 String ss="update contatos set telefones='"+num+"', nome='"+nam+"' where nome='"+nam+"' OR telefones='"+num+"'";
			 st2.executeUpdate(ss);
			 st2.close();
			}
		   catch(Exception e2)
			{
			 label3.setText("Erro ao MODIFICAR : "+e2);
			}
		  }
		 if(e.getSource()==delete)
		  {
		   label3.setText("Registro DELETADO com sucesso!");
		   try
			{
			 st2=con.createStatement();
			 String ts=txtA1.getText();
			 String ss="delete from contatos where nome ='"+ts+"'";
			label3.setText(label3.getText() + " : " +ss);
			 st2.executeUpdate(ss);
			 st2.close();
			}
		   catch(Exception e2)
			{
			 label3.setText("Erro ao DELETAR: "+e2);
			}
		  }
		 if(e.getSource()==clear)
		  {
		   label3.setText("Campos foram limpos");
		   txtA1.setText("");
		   txtA2.setText("");
		  }
	 }
 public static void main(String args[])
   {
	telephoneDir TAPP = new telephoneDir();
	TAPP.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
	TAPP.setSize(250,320);
	TAPP.setVisible(true);
   }

}

Compartilhar este post


Link para o post
Compartilhar em outros sites

insert into contatos values(NULL, '"+nam+"','"+num+"')

Tenta colocar os nomes de todos os campos na query.

 

insert into contatos(campo1, campo2, campo3) values(NULL, '"+nam+"','"+num+"');

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.