Skip to content
Advertisement

How to convert an SQL Output to a python list [closed]

So basically I have an SQL database with 5 different columns of data. what I am trying to do is take the data from my SQL query and put it into a list so I can display it in tkinter’s treeview widget.

Questions:

  1. Is there an easier way to take data from an SQL table and display it in a table-like format in tkinter? If so how?

  2. Is it a good idea to make a table in tkinter with the treeview widget?

  3. If not, what widget should I use?

I have tried to convert my SQL output to a list but it keeps giving errors similar to:

Here is my complete code:

Sorry for the weird layout

Advertisement

Answer

It is minimal example which create database with two elements and later it uses data from database to fill Treeview

You have to use create() only once.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement