Python Forum
printing selected item with Sqlite data
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
printing selected item with Sqlite data
#1
Hi All,

It has been some time since I have finished writing my program. I have run into a problem where I am trying to print and export data from sqlite3 db to a form so I can modify/edit the data and then update it.

Currently when I am printing the selected Treeview item back to console, this is what I get:

['', '', [9006, u'SW07', u'Cisco 2950-48', u'CAT586868293', 40], 0, '']
values are (left to right):
product ID
device name
device model
device serial
pallet number

I would then like to create a form which populates entry fields in order for me to modify and rewrite those changes to the sqlite db. (unfortunately I deleted this bit of code as I kept getting lots of errors)

Also, what are the u'?


Sorry for sounding Huh, but I currently am new to python and learning it as I go.

Below is the line of code.

def funcEditInvent():
	selected_item=tree1.selection()
	device=tree1.item(selected_item)
	device=list(device.values())
	print (device)
Reply


Messages In This Thread
printing selected item with Sqlite data - by whacky7 - Jan-16-2020, 02:06 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  need help with data analysing with python and sqlite Hardcool 2 367 Jan-30-2024, 06:49 AM
Last Post: Athi
  Remove an item from a list contained in another item in python CompleteNewb 19 5,762 Nov-11-2021, 06:43 AM
Last Post: Gribouillis
  Extracting and printing data ajitnayak1987 0 1,412 Jul-28-2021, 09:30 AM
Last Post: ajitnayak1987
  Error while transferring data from sqlite to elasticsearch - please help! ps96068 1 2,682 Jun-12-2021, 09:24 AM
Last Post: ibreeden
  Importing data from a text file into an SQLite database with Python macieju1974 7 4,138 Jun-29-2020, 08:51 PM
Last Post: buran
  Printing data scratchmyhead 4 2,702 Nov-08-2019, 11:25 PM
Last Post: jefsummers
  How can I only receive data from selected serial numbers MasterCATZ 7 3,544 Apr-20-2019, 08:35 AM
Last Post: MasterCATZ
  Need help with SQLite data input donmerch 4 5,772 Feb-06-2018, 10:09 AM
Last Post: donmerch

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020