Python Forum

Full Version: Auto update database view
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm working on a program that will log data from a CAN bus (over serial) and help me reverse engineer the messages.

I'll be logging the incoming messages in a database (easy enough).

Before I reinvent the wheel and write code to keep a filtered view of the records in the database up to date, is there a prebuilt control that already does this?

I'm picturing something like a Tkinter Treeview populated by a SQL command that automatically displays any new record that is logged into the database which matches the SQL command.

I only mention Tkinter as that's what I'm familiar with ... please let me know if this would be easier in some other GUI toolkit.

TIA, J.