-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPessoa.java
66 lines (55 loc) · 1.64 KB
/
Pessoa.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import java.sql.Connection;
import java.sql.PreparedStatement;
public class Pessoa {
private int codigo;
private String nome;
private String fone;
private String email;
public void inserir() throws Exception{
//1. Definir o comando SQL
String sql = "INSERT INTO tb_pessoa (nome, fone, email) VALUES (?, ?, ?)"; //? = placeholder
//2. Abrir uma conexão com o MySQL Server
ConnectionFactory factory = new ConnectionFactory();
Connection conexao = factory.getConnection();
//3. Preparar o comando (solicita ao MySQL Server que compile o comando SQL previamente)
PreparedStatement ps = conexao.prepareStatement(sql);
//4. Substituir os eventuais placeholders
ps.setString(1, nome);
ps.setString(2, fone);
ps.setString(3, email);
//5. Executar o comando
ps.execute();
//6. Fechar os recursos (a conexão e o comando preparado)
ps.close();
conexao.close();
}
public Pessoa(String nome, String fone, String email) {
setNome(nome);
setFone(fone);
setEmail(email);
}
public int getCodigo() {
return codigo;
}
public String getEmail() {
return email;
}
public String getFone() {
return fone;
}
public String getNome() {
return nome;
}
public void setCodigo(int codigo) {
this.codigo = codigo;
}
public void setEmail(String email) {
this.email = email;
}
public void setFone(String fone) {
this.fone = fone;
}
public void setNome(String nome) {
this.nome = nome;
}
}