7h3kk1d Posted January 1, 2011 Posted January 1, 2011 I want to start developing an application to keep track of all the comic books I own and want. I want to make a database to keep track of all the information but was wondering what language I should use. I'm not new to programming but I'm pretty new to databases so any help would be appreciated. The software has to work in linux since my desktop uses ubuntu. Quote
555 Posted January 1, 2011 Posted January 1, 2011 I would just to use Joomla as a CMS www.joomla.org then get the extention called ZOO, and you can create a catalog of all your books and even rate them from 1 to 5 stars, it would take a very long time to code all of that from scratch, but you can always go back threw the joomla codes and edit things to your liking because it is open source. Oh yeah this is a online application though, which I recommend that way everyone in the world can enjoy comic book collecting with you. You can even add a forum for trading books and stuff. Quote
xero Posted June 15, 2012 Posted June 15, 2012 if your using linux ruby (on rails) is probably a good place to start. https://help.ubuntu.com/community/RubyOnRails Quote
Sitwon Posted June 15, 2012 Posted June 15, 2012 I want to start developing an application to keep track of all the comic books I own and want. I want to make a database to keep track of all the information but was wondering what language I should use. I'm not new to programming but I'm pretty new to databases so any help would be appreciated. The software has to work in linux since my desktop uses ubuntu. Well the traditional solution is to us a SQL database such as MySQL, Postgres, or SQLite. The hip new thing is using is to use a NoSQL database such as CouchDB or MongoDB. If you're just going to be running it locally you might even use something simpler like Berkeley DB. Regardless of what you pick, you're free to use any programming language you're already familiar with. All these major database implementations have a very wide and inclusive set of programming language bindings to their APIs allowing you to use any programming language you're already comfortable in to manipulate the database. Quote
combatwombat27 Posted June 15, 2012 Posted June 15, 2012 I second Berkeley DB due to being lightweight. You don't sound like you need tons of functionality and a db that is super powerful so I wouldn't work with the rest , that would just be that more complex. Unless you want cool features like it accessible on a webpage, support hundreds of users etc. Quote
logicalconfusion Posted June 26, 2012 Posted June 26, 2012 I agree. A relational DB like mysql is the way to go. Avoid M$ products like Access. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.