Re: [sqlite] UI framework for sqlite

2006-04-06 Thread David Bicking
I just wanted to thank everyone who sent me links. Now I just need to decide what to use. :) Thanks again, David On Wed, 2006-04-05 at 09:42 -0400, David Bicking wrote: > This is probably off-topic for this list, so let me apologize in advance > if it is. I don't have a problem in using sqlite i

Re: [sqlite] UI framework for sqlite

2006-04-06 Thread webscool
I would also like to suggest Tcl/Tk. I have written grid viewers, grid editors and also a record based editor for data entry. I beef up the scanty sqlite data definition with 3 data definition tables that describe logical keys, validation conditions, batch totalling, column titles and other stuff.

Re: [sqlite] UI framework for sqlite

2006-04-05 Thread Micha Bieber
Frankly, I'm a bit surprised that you seemingly never were in contact with one of the many popular widget libraries, offering the mentioned (btw similar) solutions to your problem. Some of the libraries also have more unified interfaces to different backends (also sqlite). To add another one, I'm u

RE: [sqlite] UI framework for sqlite

2006-04-05 Thread Fred Williams
Not sure why you are trying to do something like that. One technique which seems to be quite common, and that I use extensively, is to present a scrollable read only grid of pertinent data fields. with a "VCR" button set for control. The user can press the buttons for Insert, Delete, or Edit for

Re: [sqlite] UI framework for sqlite

2006-04-05 Thread Ulrich Schöbel
Hi David, if you're looking for a truly portable tool, you should consider Tcl/Tk. SQLite has a builtin interface to Tcl, Starkits are portable between many OSes without any code change and the tktable widget ot tablelist should be what you are looking for to present your data. Visit http://wiki.

Re: [sqlite] UI framework for sqlite

2006-04-05 Thread Jay Sprenkle
On 4/5/06, David Bicking <[EMAIL PROTECTED]> wrote: > > So I am looking for links to tutorials or how-tos, or even the right > string of text to use on google to point me in the right direction. You might look into these: Java is very much like C++ The Eclipse IDE is supposed to be very good. ht

Re: [sqlite] UI framework for sqlite

2006-04-05 Thread Olaf Beckman Lapré
There's the SQLite Control Center: http://bobmanc.home.comcast.net/sqlitecc.html Olaf - Original Message - From: "David Bicking" <[EMAIL PROTECTED]> To: Sent: Wednesday, April 05, 2006 3:42 PM Subject: [sqlite] UI framework for sqlite > This is probably off-topic for this list, so le

Re: [sqlite] UI framework for sqlite

2006-04-05 Thread drh
David Bicking <[EMAIL PROTECTED]> wrote: > > I am looking for links to tutorials or how-tos,... > to point me in the right direction. > http://wiki.tcl.tk/15631 -- D. Richard Hipp <[EMAIL PROTECTED]>

Re: [sqlite] UI framework for sqlite

2006-04-05 Thread Clay Dowling
David, What you're looking for is an editable data grid. They're common components and fairly easy to find. They're also typically a pain in the tail. If you're comfortable with C++ you might look at wxWidgets and their built-in datagrid. Clay David Bicking said: > This is probably off-topic