Forum     

Go Back   Digit Technology Discussion Forum > Software > Programming
Register FAQ Calendar Mark Forums Read

Programming The destination for developers - C, C++, Java, Python and the lot


Reply
 
LinkBack Thread Tools Display Modes
Old 06-02-2012, 06:34 PM   #1 (permalink)
I'm a Wannabe Hacker
 
Prime_Coder's Avatar
 
Join Date: Apr 2011
Location: Oxford of D East!
Posts: 235
Post Suggestions for IDE as well as db language


Hello all TDF members,

I wanted to know what difference will it make by using NetBeans or Eclipse while developing a desktop application. I want to use open source product, so I thought to ask you this question, since both are open source.

Also, I want to know which database language will be really helpful and easy to use in the application development. Whether I should use SQLite or should I use MySQL?
__________________
Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. - Rich Cook
Prime_Coder is offline   Reply With Quote
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 06-02-2012, 11:01 PM   #2 (permalink)
I am the night! I am....
 
vickybat's Avatar
 
Join Date: Aug 2009
Location: Gotham City
Posts: 4,209
Default Re: Suggestions for IDE as well as db language

I will suggest netbeans and mysql.

Have a look at this. A quick google gave me this.
__________________
core i5 750, biostar h55 A+ (X16+X4), 4gb 1333 ddr3, corsair vx450, cm elite 335,Asus EAH 5750 FORMULA , samsung 2033 sw plus, wd green 1tb , wd 1tb my book , hp dvd writer,Apc 650 va, logitech z313
vickybat is offline   Reply With Quote
Old 06-02-2012, 11:12 PM   #3 (permalink)
I'm a Wannabe Hacker
 
Prime_Coder's Avatar
 
Join Date: Apr 2011
Location: Oxford of D East!
Posts: 235
Default Re: Suggestions for IDE as well as db language

I am also thinking of the same alternatives, but i thought to have an insight from experienced programmers from TDF.
__________________
Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. - Rich Cook
Prime_Coder is offline   Reply With Quote
Old 06-02-2012, 11:29 PM   #4 (permalink)
I am the night! I am....
 
vickybat's Avatar
 
Join Date: Aug 2009
Location: Gotham City
Posts: 4,209
Default Re: Suggestions for IDE as well as db language

^^ I'm sure about the db cause mysql is really light and easy. I have used both oracle and mysql and have hands-on experience on them. Having worked on siebel, the db we used was oracle and both were proprietary products of oracle (siebel being a crm tool with oracle db as a database).

But not sure about the IDE. You should choose considering your requirements and i guess for your requirement you could pick any. Still then, wait for some experienced programmer to comment on this.
__________________
core i5 750, biostar h55 A+ (X16+X4), 4gb 1333 ddr3, corsair vx450, cm elite 335,Asus EAH 5750 FORMULA , samsung 2033 sw plus, wd green 1tb , wd 1tb my book , hp dvd writer,Apc 650 va, logitech z313
vickybat is offline   Reply With Quote
Old 07-02-2012, 12:31 AM   #5 (permalink)
Sami Hyypiä, LFC legend
 
Liverpool_fan's Avatar
 
Join Date: Jun 2007
Location: Нью-Дели
Posts: 2,138
Default Re: Suggestions for IDE as well as db language

SQL Lite and MySQL. Both serve different targets IMO.
__________________
Experience true education in Computer Science - http://www.udacity.com | http://www.coursera.org

Spoiler:
Read before asking / messaging any moderator for any query: FAQ + answers for new members

Read all the sticky threads before asking any type of query. Most basic questions are answered in those.
Don't use forum for chatting. Visit http://webchat.freenode.net/?channels=krow, enter nick and connect.
Liverpool_fan is offline   Reply With Quote
Old 07-02-2012, 11:34 AM   #6 (permalink)
ico
.
 
ico's Avatar
 
Join Date: Jun 2007
Location: New Delhi
Posts: 8,944
Default Re: Suggestions for IDE as well as db language

Quote:
Originally Posted by Liverpool_fan View Post
SQL Lite and MySQL. Both serve different targets IMO.
yup.

For a standalone desktop app, go with SQLite. I mean, why you'd want a heavy daemon running in the background for a desktop app? (referring to mysqld)

MySQL if you were coding a website or a large scale project.
__________________
.
ico is offline   Reply With Quote
Old 07-02-2012, 12:45 PM   #7 (permalink)
I'm a Wannabe Hacker
 
Prime_Coder's Avatar
 
Join Date: Apr 2011
Location: Oxford of D East!
Posts: 235
Default Re: Suggestions for IDE as well as db language

Yeah. I know SQLite and MySQL serve different purposes.

Before posting the question, i had read the information on websites.

But I wanted to know which will be better if used in an application which is web enabled desktop application. And what is chosen by other programmers, if they also encounter such situations.
__________________
Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. - Rich Cook
Prime_Coder is offline   Reply With Quote
Old 07-02-2012, 01:08 PM   #8 (permalink)
ico
.
 
ico's Avatar
 
Join Date: Jun 2007
Location: New Delhi
Posts: 8,944
Default Re: Suggestions for IDE as well as db language

For local application data storage, I'd prefer SQLite. Even Firefox uses it.

It is this simple to implement SQLite in your C/C++ program - SQLite In 5 Minutes Or Less

Just an example, now if your desktop app is connecting to a server over the Internet to fetch details or anything, in that case you would prefer running MySQL on the server. SQLite for local storage for the app.
__________________
.
ico is offline   Reply With Quote
Old 07-02-2012, 06:52 PM   #9 (permalink)
I am the night! I am....
 
vickybat's Avatar
 
Join Date: Aug 2009
Location: Gotham City
Posts: 4,209
Default Re: Suggestions for IDE as well as db language

Mysql can also be used locally and i don't think it would be a resource hog. I haven't used SQLite so can't comment. After seeing ico's post, i think its a good option as well.
__________________
core i5 750, biostar h55 A+ (X16+X4), 4gb 1333 ddr3, corsair vx450, cm elite 335,Asus EAH 5750 FORMULA , samsung 2033 sw plus, wd green 1tb , wd 1tb my book , hp dvd writer,Apc 650 va, logitech z313
vickybat is offline   Reply With Quote
Old 07-02-2012, 07:32 PM   #10 (permalink)
Sami Hyypiä, LFC legend
 
Liverpool_fan's Avatar
 
Join Date: Jun 2007
Location: Нью-Дели
Posts: 2,138
Default Re: Suggestions for IDE as well as db language

Vicky, will you be pleased if a desktop application asks to you install entire MySQL server? MySQL is an *overkill* there.
__________________
Experience true education in Computer Science - http://www.udacity.com | http://www.coursera.org

Spoiler:
Read before asking / messaging any moderator for any query: FAQ + answers for new members

Read all the sticky threads before asking any type of query. Most basic questions are answered in those.
Don't use forum for chatting. Visit http://webchat.freenode.net/?channels=krow, enter nick and connect.
Liverpool_fan is offline   Reply With Quote
Old 07-02-2012, 08:50 PM   #11 (permalink)
I am the night! I am....
 
vickybat's Avatar
 
Join Date: Aug 2009
Location: Gotham City
Posts: 4,209
Default Re: Suggestions for IDE as well as db language

^^Yup i got what you're trying to say mate but i always compare mysql with oracle and the former is far less resource hog.

Haven't used SQLite so yes as you guys are saying its best for local builds, then it should be good for op here.
__________________
core i5 750, biostar h55 A+ (X16+X4), 4gb 1333 ddr3, corsair vx450, cm elite 335,Asus EAH 5750 FORMULA , samsung 2033 sw plus, wd green 1tb , wd 1tb my book , hp dvd writer,Apc 650 va, logitech z313
vickybat is offline   Reply With Quote
Old 08-02-2012, 11:24 AM   #12 (permalink)
ico
.
 
ico's Avatar
 
Join Date: Jun 2007
Location: New Delhi
Posts: 8,944
Default Re: Suggestions for IDE as well as db language

lol, I run MySQL on my machine as a "local build"...but that's not the point.

The point is, for a desktop application, why'd one want MySQL as a 20 Megabyte dependency? When it is not needed at all? MySQL's "client-server" model is also unneeded for a desktop application as far as "local storage" is concerned.

Used Firefox? It stores Bookmarks in SQLite.

Quote:
Another way to look at SQLite is this: SQLite is not designed to replace Oracle (and MySQL). It is designed to replace fopen().
Appropriate Uses For SQLite

SQLite is made "embedded" use in desktop/mobile applications.
__________________
.
ico is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


 
Latest Threads
- by Charan
- by Sarath
- by clmlbx

Advertisement




All times are GMT +5.5. The time now is 12:39 AM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.

Search Engine Optimization by vBSEO 3.3.2