-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathatualizar.py
57 lines (43 loc) · 1.64 KB
/
atualizar.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
from flask import Flask, request, render_template, jsonify
from flaskext.mysql import MySQL
import config
mysql = MySQL()
app = Flask(__name__)
app.config['MYSQL_DATABASE_DB'] = config.DB
app.config['MYSQL_DATABASE_USER'] = config.USER
app.config['MYSQL_DATABASE_PASSWORD'] = config.PASS
app.config['MYSQL_DATABASE_HOST'] = config.DB_URL
mysql.init_app(app)
def atualizar_pessoas2(nome, cpf):
if cpf:
conn = mysql.connect()
cursor = conn.cursor()
cursor.execute(
f'update python_crud_pessoas.pessoas set nome = "{nome}" where cpf = "{cpf}";'
)
conn.commit()
cursor.close()
conn.close()
return render_template('pessoas_atualizar.html')
def atualizar_contatos_telefone2(telefone, cpf):
if cpf:
conn = mysql.connect()
cursor = conn.cursor()
cursor.execute(
f'update python_crud_pessoas.pessoas as p inner join python_crud_pessoas.contatos as c on c.id_pessoas = p.id set c.telefone= "{telefone}" where cpf = "{cpf}";'
)
conn.commit()
cursor.close()
conn.close()
return render_template('contatos_atualizar_telefone.html')
def atualizar_contatos_email2(email, cpf):
if cpf:
conn = mysql.connect()
cursor = conn.cursor()
cursor.execute(
f'update python_crud_pessoas.pessoas as p inner join python_crud_pessoas.contatos as c on c.id_pessoas = p.id set c.email= "{email}" where cpf = "{cpf}";'
)
conn.commit()
cursor.close()
conn.close()
return render_template('contatos_atualizar_email.html')