in reply to Tcl widget for showing SQLite data

Before I start, I believe you're looking for Tk widgets.

If the question is whether there is something that inherently looks for a SQLite DB and pulls whatever information there is there, I would risk saying there isn't, and that you'll need to take SQLite, and the Tk gui and glue them yourself.
If you mean something like this, then yes, there is.

Software speaks with tongues of man; I debug, therefore I code.

Replies are listed 'Best First'.
Re^2: Tcl widget for showing SQLite data
by fernandes (Monk) on Nov 21, 2007 at 18:25 UTC
    Yes, you're right: I'm looking for Tk widgets.
    I was thinking in reading the SQLite DB by a Perl script and send the data to a user friendly table (2-dimensions), created as a Tk widget.
    I could show the data more easely creating a html table as output, I think. But I've thought a Tk widget could do the job better: fast and pretty. What do you think?