I'm planning to write Software under Fedora , I hope to help me choosing the best language. Softwares that I'm going to write. They are Database Applications.
closed as not constructive by shodanex, Dori Mar 30 '11 at 5:54
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
As most GUI-Frameworks provide wrappers for many programming languages I'd suggest you choose the programming language which suits your needs best. Good GUI frameworks IMHO are:
|
|||
|
|
|
What languages do you know? I would use Java but that's because I know Java. I have used C++ but never done any GUI programming with it. GUIs in Java are pretty easy. |
|||
|
|
|
C++ with Qt. It's similarly easy to use as Java due to it's hirarchical memory model (no need to bother much with memory management) and it's familiar libraries and signals and slots are a nice way to do observers and callbacks and can easily be multithreaded if needed. Also the SQL framework (since you want database connectivity) is quite nice (however inferior to JDBC, IMO). |
|||
|
|