-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tecnico.java
44 lines (35 loc) · 1.39 KB
/
Tecnico.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
import java.sql.*;
public class Tecnico extends Funcionario {
protected String setor;
public Tecnico(String Nome, String CPF, String Data_Nasc, int Matricula, String Telefone, String Email, String Senha, float salario, int carga_hor, String setor, int func) {
super(Nome, CPF, Data_Nasc, Matricula, Telefone, Email, Senha, salario, carga_hor, func);
this.setor = setor;
Connection connection;
ResultSet rs;
String url = "jdbc:postgresql://localhost:5432/POOproject";
String un = "postgres";
//String pwd = "ifpb";
String pwd = "1111";
try{
Class.forName("org.postgresql.Driver");
connection = DriverManager.getConnection(url,un,pwd);
Statement st = connection.createStatement();
String query = "INSERT INTO TECNICO values ('"+ Nome +"', '"+ CPF +"', '"+ Data_Nasc +"', "+ Matricula +", '"+ Telefone +"', '"+ Email +"', '"+ Senha +"', '"+ salario +"', '"+ carga_hor +"', '"+ setor +"', "+ func +");";
st.executeUpdate(query);
st.close();
connection.close();
}
catch(ClassNotFoundException cnfe){
System.out.println("Nao foi possivel encontrar o Driver apropriado");
}
catch(SQLException sqle){
System.out.println("Nao foi possivel conectar ao SGBD");
}
}
public String getSetor() {
return setor;
}
public void setLocal(String novoSetor) {
setor = novoSetor;
}
}