Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which language for a quick GUI app + sqlite database CRUD (2-4 tables) [closed]

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).

???

like image 831
M_1 Avatar asked Dec 05 '22 07:12

M_1


1 Answers

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.

like image 180
razong Avatar answered May 14 '23 05:05

razong