-
Notifications
You must be signed in to change notification settings - Fork 0
/
Turma.java
50 lines (43 loc) · 1.22 KB
/
Turma.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
import java.sql.*;
public class Turma{
protected int cod_turma;
protected String nome;
public Turma(int cod_turma, String nome) {
this.cod_turma=cod_turma;
this.nome=nome;
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 TURMA values ("+ cod_turma +", '"+ nome +"');";
st.executeUpdate(query);
st.close();
connection.close();
}
catch(ClassNotFoundException cnfe){
System.out.println("Nao foi possivel encontrar o Driver apropriado");
}
catch(SQLException sqle){
sqle.printStackTrace();
System.out.println("Nao foi possivel conectar ao SGBD");
}
}
public int getCod_turma() {
return cod_turma;
}
public void setCod_turma(int cod_turma) {
this.cod_turma = cod_turma;
}
public String getNome() {
return nome;
}
public void setNome(String nome) {
this.nome = nome;
}
}