我如何将MySQL数据库中的数据从MySQL数据库填充到树形视图中?

问题描述 投票:0回答:1

对不起,如果我在错误的部分中发布了此内容,我是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的新手,我确实在搜索类似的主题,但没有得到我所需要的。所以我想做的是,获取...

mysql python-3.x treeview
1个回答
0
投票
© www.soinside.com 2019 - 2024. All rights reserved.