IhaveanapplicationmadeinJava,andIneedtostoretheuser'scadastralinformationinthedatabase:
cpf,password,name,address,phone
System.out.println("Digite seu CPF");
cpf = ler.nextLine();
System.out.println("Senha: ");
senha = ler.nextLine();
System.out.print("Nome Completo: ");
nome = ler.nextLine();
System.out.print("Endereço: ");
endereco = ler.nextLine();
System.out.print("Telefone: ");
telefone = ler.nextInt();
I want to get this data through the Scanner class and save it to the database.
To manage the database I'm using PostgresSQL, and the IDE for the application is Eclipse.
I've done the database connection with Eclipse through JDBC, but I'm not sure how I get the user inputs and I store it in the Database using the Java Scanner Class. I researched the internet and the only tutorials I encounter is using Jframe and IDE is NetBeans.
//Conexão do eclipse com o postgresql
import java.sql.*;
public class ConexaoSQL {
//Statement = Realizar pesquisa no banco de dados
public Statement stm;
//ResulSet = Armazenar o resultado da pesquisa
public ResultSet rs;
//Driver = identifica no serviço do banco de dados
private String driver = "org.postgresql.Driver";;
//Caminho = Indica qual o diretório do banco de dados
private String caminho = "jdbc:postgresql://localhost:5432/agencia";;
/*
Usuário: postgres
Senha: admin
*/
private String usuario = "postgres";;
private String senha = "admin";;
//Conection = Realizar a Conexão com banco de Dados
public Connection con;
public void conexao(){ //conecta ao banco de dados
System.setProperty("jdbc.Drivers", driver);
try {
con=DriverManager.getConnection(caminho, usuario, senha);
System.out.println("Conectado com Sucesso ao SQL!");
} catch (SQLException e) {
System.err.println("Erro de conexão ao SQL");
e.printStackTrace();
}
}
public void desconecta(){//desconecta do banco de dados
try {
con.close();
System.out.println("Desconectado com Sucesso!");
} catch (SQLException e) {
System.err.println("Erro ao fechar conexão com banco de dados");
e.printStackTrace();
}
}
}
Could anyone help me or send a tutorial that has something similar? Thanks in advance for any help.
Table PostGreSQL