vote up 2 vote down star

Which language for quick GUI app + sqlite database CRUD (2-4 tables). Java, Python? (Please no jokes like VBasic), some reference, source code to look on?

added:

First idea: 1 database SQLite (Win) + client GUI app (Win) clients table + orders table + others import, export database add, del, edit, etc. entries

Second idea: 1 hosted database (PostgreSQL ,MySQL) + web app client clients table + orders table + others import, export database add, del, edit, etc. entries

Thinking about Django, RoR or local Java(Netbeans), Python(wxPython+ORM).

???

flag

what's your target platform?! – Andrew Oct 30 '08 at 15:33
I don't think that VB.Net would be a joke. Why do you think it would be? – EBGreen Oct 30 '08 at 15:38
I think by "GUI app" you're implying that you want an app for the desktop. Your comment about VBasic implies that you're targeting Windows. You may want to add these details to your question--might get you better responses. – Onorio Catenacci Oct 30 '08 at 15:38

9 Answers

vote up 1 vote down check

Ruby on Rails will do simple CRUD operations very easily - although doing more than that can be a little more complex (would require some reading about RoR's way of doing things). The latest version of Rails automatically uses sqlite databases, and in fact the whole database, and CRUD GUI code can be created with one command (scaffold).

If this is to be deployed then that can be a bit more difficult (although I hear that Capistrano is good) - but for local or intranet use then that's what I'd do.

link|flag
vote up 2 vote down

Whatever you are most familiar with.

Or whatever have better set of ready to go components, so either Java (Netbeans/Matise + wizards) or something else.

link|flag
vote up 3 vote down

Try python with wxPython for UI programming. I suggest, that you look for an ORM mapper like SQLachemy.

Somebody suggested dabo which is made especially for your purpose, but I have no experience with it (yet). It works with wxPython and databases like SQLite.

link|flag
vote up 2 vote down

Need more info. For in house or will you distribute? Desktop or web-based? If web-based, do you host it or will you have it hosted?

Then there's your personal goals. Really, really do it quick, or let it be an opportunity to learn a language/technology you are curious about, like Ruby on Rails? Linq?

link|flag
Corey have good information but no solution, I really do not understand how you can accept this answer as the final one. – Daok Oct 30 '08 at 17:11
I agree. In the accepted answer, there are 7 sentences. 5 of them end with a question mark. They are all great questions that need to be ansered to provide a valid solution, but they are certainly not an answer in and of themselves. – EBGreen Oct 30 '08 at 18:56
vote up 0 vote down

GUI development isn't much easier than with Tcl/tk. Also, Tcl has arguably the best interface to sqlite. If deployment is an issue there's definitely no language that can compete with tcl's tclkit/starkit/starpack packaging mechanism.

link|flag
vote up 1 vote down

Write a XulRunner app; this can run with Firefox 3.0.

http://developer.mozilla.org

link|flag
vote up 2 vote down

Delphi. It's an ideal fit for this kind of desktop application, and there's a SQLite wrapper available.

link|flag
vote up 0 vote down

C# and WPF, it;s preatty easy and good to know (I've been playing with it for 1 week and fully wrote a twitter client in a few hours.

now Cocoa, and the interface Builder, that is a cool approach even for a simple app.

link|flag
vote up 1 vote down

REALbasic, if you want to do a desktop app. The Personal edition comes with SQLite built in and is free on Linux, cheap on other platforms. It's a very clean OO language and reasonable IDE, about as productive as VB6 to work in but much cleaner.

I've been doing cross-platform development for about 15 years and REALbasic is now my tool of choice for straightforward database form apps, including an enterprise accounting system I'm currently working on.

I also am working in WPF/C#, C++ and Cocoa/Objective-C so I'm not just a "Basic-weanie" :-)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.