-
Notifications
You must be signed in to change notification settings - Fork 0
/
agenda_bd.py
170 lines (143 loc) · 4 KB
/
agenda_bd.py
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
import mysql.connector
def getConexao():
conexao = mysql.connector.connect(user='root', password='admin', database='agenda2')
return conexao
def cadastrar():
nome = input('Digite o nome: ')
telefone = input('Digite o telefone: ')
hobbies = []
id_hobbies = []
while True:
novoHobby = input('Novo hobby? (S/n)')
if novoHobby == 'n':
break
listarHobbies()
id_hobby = int(input('Informe o ID do Hobby ou 0 para novo: '))
if id_hobby == 0:
hobbies.append(input('Hobby: '))
else:
id_hobbies.append(id_hobby)
try:
sql = 'INSERT INTO contatos (nome, telefone) VALUES (%s, %s)'
sqlHobby = 'INSERT INTO hobbies (nome) VALUES (%s)'
sqlRelacao = 'INSERT INTO contatos_has_hobbies (contatos_id, hobbies_id) VALUES (%s, %s)'
conexao = getConexao()
cursor = conexao.cursor()
cursor.execute(sql, (nome, telefone))
id_contato = cursor.lastrowid
for hobby in hobbies:
cursor.execute(sqlHobby, (hobby,))
id_hobbies.append(cursor.lastrowid)
for id_hobby in id_hobbies:
cursor.execute(sqlRelacao, (id_contato, id_hobby))
conexao.commit()
except Exception as e:
print('Error: {}'.format(e))
finally:
cursor.close()
conexao.close()
def listar():
print('\nLista de contatos: ')
conexao = getConexao()
cursor = conexao.cursor()
sql = 'select * from contatos';
cursor.execute(sql)
for (id, nome, telefone) in cursor:
print('{} - {}: {}'.format(id, nome, telefone))
cursor.close()
conexao.close()
def listarHobbies():
print('Lista de hobbies: ')
conexao = getConexao()
cursor = conexao.cursor()
sql = 'select * from hobbies';
cursor.execute(sql)
for (id, nome) in cursor:
print('{} - {}'.format(id, nome))
cursor.close()
conexao.close()
def atualizar():
while True:
listar()
id = input('Informe o ID a ser editado: ')
conexao = getConexao()
cursor = conexao.cursor()
sql = 'SELECT * FROM contatos WHERE id=%s'
cursor.execute(sql, (id,))
try:
id, nomeAntigo, telefoneAntigo = cursor.fetchone()
break
except:
print('Registro não encontrado!')
nome = input('Digite o novo nome [{}]: '.format(nomeAntigo))
telefone = input('Digite o novo telefone [{}]: '.format(telefoneAntigo))
if nome == '':
nome = nomeAntigo
if telefone == '':
telefone = telefoneAntigo
sqlUpdate = 'UPDATE contatos SET nome=%s, telefone=%s WHERE id=%s'
try:
cursor.execute(sqlUpdate, (nome, telefone, id))
conexao.commit()
except Exception as e:
print('Error: {}'.format(e))
finally:
cursor.close()
conexao.close()
def apagar():
listar()
id = input('Informe o ID a ser editado: ')
conexao = getConexao()
cursor = conexao.cursor()
try:
sql = 'DELETE FROM contatos WHERE id=%s'
cursor.execute(sql, (id,))
conexao.commit()
except Exception as e:
print('Erro! {}'.format(e))
finally:
cursor.close()
conexao.close()
def detalhes():
listar()
id = input('Informe o ID para ver detalhes: ')
conexao = getConexao()
cursor = conexao.cursor()
sql = 'SELECT * FROM contatos WHERE id=%s'
sqlHobbies = 'SELECT h.* FROM hobbies h JOIN contatos_has_hobbies c ON c.hobbies_id=h.id WHERE contatos_id=%s'
try:
cursor.execute(sql, (id,))
id, nome, telefone = cursor.fetchone()
print('{} - {}: {}'.format(id, nome, telefone))
print('Hobbies: ')
cursor.execute(sqlHobbies, (id,))
for idHobby, hobby in cursor:
print('{} - {}'.format(idHobby, hobby))
except Exception as e:
print('Registro não encontrado! {}'.format(e))
finally:
cursor.close()
conexao.close()
while True:
print('\n1. Cadastrar')
print('2. Listar')
print('3. Atualizar')
print('4. Apagar')
print('5. Ver detalhes')
print('6. Listar hobbies')
print('7. Sair')
opcao = int(input())
if opcao == 1:
cadastrar()
elif opcao == 2:
listar()
elif opcao == 3:
atualizar()
elif opcao == 4:
apagar()
elif opcao == 5:
detalhes()
elif opcao == 6:
listarHobbies()
elif opcao == 7:
break