对不起,如果我在错误的部分中发布了此内容,我是stackoverflow的新手,我确实搜索了类似的主题,但没有得到我所需要的。
所以,我想做的是,以((1,google,username1,password1),(2,facebook,username2,password2)...)的形式从mysql数据库获取表的信息]
并在具有4列的树视图中填充网站,用户名,密码,如下所示:
我尝试过的是:
#find password
def find_password(selection):
#remove the frame if it already exists
for child in frame.winfo_children():
child.destroy()
#to fill tree with tuples
def show_table(table):
for x in table:
tree.insert("", 0, text=x)
#button1 function
def btn_input_one(text1):
text_input = text1.get("1.0", "end-1c")
connection = mysql.connector.connect(host='localhost',database='suryansh',user='suryansh',password='suryansh')
if connection.is_connected():
cursor = connection.cursor(buffered = True)
cursor.execute("select database();")
#sql queries
create_table_query = "select * from " + text_input
cursor = connection.cursor(buffered = True)
result = cursor.execute(create_table_query)
table = cursor.fetchall()
show_table(table)
这就是我尝试过的,这就是我得到的:“ >>
对不起,如果我在错误的部分中发布了此内容,我是stackoverflow的新手,我确实在搜索类似的主题,但没有得到我所需要的。所以我想做的是,获取...