Está en la página 1de 1

import ultimoTallerP

cnn=ultimoTallerP.mysqlbase()

cnn.Connect('localhost','Root',' ','Tienda')
cnn.Exec("insert into Clientes (Identificacion, Nombre, Apellido, edad, cupo,
puntos_Acumulados) values (12338475, 'Andres', 'reyes', 36, 270000, 200)", False)
print(cnn.Exec("select * from Clientes", True))
cnn.Exec("update Clientes set Identificacion=12338475 where Nombre='Andres' and
Apellido='Reyes'", True)
print(cnn.Exec("select * from Clientes", True))
cnn.Close()

También podría gustarte