-
Notifications
You must be signed in to change notification settings - Fork 0
/
sql-ex1.py
63 lines (50 loc) · 1.38 KB
/
sql-ex1.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
import sqlite3
def cria_tabela():
cursor.execute('''CREATE TABLE CLIENTES
(ID INT PRIMARY KEY NOT NULL,
NOME TEXT NOT NULL,
IDADE INT NOT NULL,
ENDERECO CHAR(50),
CEP CHAR(9));''')
def ler_tabela():
rows = cursor.execute("SELECT * FROM CLIENTES;").fetchall()
if rows == []:
print("Tabela vazia")
return False
else:
for row in rows:
print("ID: ",row[0]," NOME: ",row[1]," IDADE: ",row[2]," ENDERECO ",row[3]," CEP ",row[4])
return True
conn = sqlite3.connect('Clientes.sqlite')
cursor = conn.cursor()
print("Banco de dados criado com sucesso")
print("\n")
cursor.execute("SELECT name FROM sqlite_master WHERE type='table';")
tabelas = cursor.fetchall()
if tabelas != []:
print("\n")
print("Exibindo tabelas")
print(tabelas)
tabela = 'CLIENTES'
leitura = True
if tabelas == []:
print("\n")
print("Banco de dados sem tabelas")
print("Criando tabela ",tabela)
cria_tabela()
elif tabela in tabelas[0]:
print("\n")
print("Tabela ",tabela, " existe")
print("Lendo tabela")
leitura = ler_tabela()
else:
print("\n")
print("Criando tabela ",tabela)
cria_tabela()
if leitura == False:
print("Adicionando elemento a tabela")
cursor.execute("INSERT INTO CLIENTES (ID,NOME,IDADE,ENDERECO,CEP) \
VALUES (1, 'User', 30, 'Rua ABC 12', '01234-000')");
cursor.close()
conn.commit()
conn.close()