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

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

RE: [sqlite] UI framework for sqlite

2006-04-05 Thread Fred Williams
pic from here. Fred > -Original Message- > From: David Bicking [mailto:[EMAIL PROTECTED] > Sent: Wednesday, April 05, 2006 8:43 AM > To: sqlite-users@sqlite.org > Subject: [sqlite] UI framework for sqlite > > > This is probably off-topic for this list, so let me apo

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

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.

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: <sqlite-users@sqlite.org> Sent: Wednesday, April 05, 2006 3:42 PM Subject: [sqlite] UI framework for sqlite

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

[sqlite] UI framework for sqlite

2006-04-05 Thread David Bicking
This is probably off-topic for this list, so let me apologize in advance if it is. I don't have a probably in using sqlite itslef, but in rather how to use a UI to present the info to the user. I am not neccesarily asking for how to advice here, but rather pointers on where I can find such advice.