Show values with sqlite3 and python

1

I am making the query to be able to show within a lineedit the respective values to the columns of the database this is my interface:

and this is the query I try to execute:

tx = self.l_usuario.text()
cursor.execute("SELECT Usuario,Contraseña,Pregunta,Respuesta,Permisos FROM Usuarios WHERE Usuario=?",(tx,))
print(cursor.show())
    
asked by Revsky01 28.07.2018 в 20:29
source

0 answers