Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 4 of 4

Thread: Easy but over my head

  1. #1
    Junior Member Dejay79's Avatar
    Join Date
    Mar 2012
    Location
    Louisville, KY
    Posts
    3
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Question Easy but over my head

    My question is simple, What should I do?, its my situation that's complex.

    The result I am looking for is to have a program (later an app) that will search/browse a database of equipment based on model numbers or equipment type returning records which will include more information about the equipment being searched. Right now I have the info in Excel file however I could move it into Open Office.org/Base or some other Database. I also have downloaded JDK and a MySQL server client.

    I have unsuccessfully searched for some off-the-shelf solutions. So now I am thinking about making something myself.

    I am not sure if this is easy or hard?
    If java is the right thing to use?


    Any ideas or help will be greatly Appreciated and If doing it myself is the way to go then I am sure you all will be hearing much more from me.

    Thanks
    #TripandFall


  2. #2
    Forum Squatter newbie's Avatar
    Join Date
    Nov 2010
    Location
    North Wales
    Posts
    661
    My Mood
    Stressed
    Thanks
    28
    Thanked 115 Times in 106 Posts
    Blog Entries
    1

    Default Re: Easy but over my head

    Java can certainly do what you require, but it's now all down to you.

    The difficulty of this task all weigh on your requirements. If you want a simple toy program which holds 100 models in a database, then a light embedded database with simple normalisation would be easy to do.
    If however, you need a an application which has access to hundreds of thousands ++ of products, which are all access concurrently by many users, you would be stepping into a new zone of indexing and concurrency.

    As you've just only downloaded a JDK, then I assume it's going to be the first one but even simpler.
    If this is your first introduction to Java, I recommend you start with something more basic. Like hello world.
    Please use [highlight=Java]//code goes here...[/highlight] tags when posting your code

  3. #3
    Junior Member Dejay79's Avatar
    Join Date
    Mar 2012
    Location
    Louisville, KY
    Posts
    3
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Re: Easy but over my head

    Thank you for the advice.
    I did just run thru "Hello World" it was helpful and informative. I am now getting setup with Netbeans IDE as I have read that it has a nice visual interface, is good for beginners and better for making GUI apps, which is what my end goal is.
    I do think that a "simple toy program" is what I am looking for it will have hundreds not thousands of records and only accessed by 2 or 3 people concurrently at most.

    If you could please explain more about this "light embedded database"? would this mean I would not have to convert my excel file into a database platform?

    Thanks again you guys are the best
    #TripandFall

  4. #4
    Forum Squatter newbie's Avatar
    Join Date
    Nov 2010
    Location
    North Wales
    Posts
    661
    My Mood
    Stressed
    Thanks
    28
    Thanked 115 Times in 106 Posts
    Blog Entries
    1

    Default Re: Easy but over my head

    Embedded databases are ones which run with your application, tightly integrated but don't need a server. (This might not be a correct definition)
    Although I believe some E.D's support concurrent users, I would suggest you go with MySQL for 3+ people, but others might disagree.

    Moving data from a csv file is the least of your worries though, as It's probably the easiest part.
    I wouldn't recommend you use Netbeans GUI designer though, not unless you've learnt the foundation materials for the GUI side, as it can lead to major issues further along.
    Please use [highlight=Java]//code goes here...[/highlight] tags when posting your code

  5. The Following User Says Thank You to newbie For This Useful Post:

    Dejay79 (March 14th, 2012)

Similar Threads

  1. This will be an easy one.
    By Pedroski in forum Object Oriented Programming
    Replies: 2
    Last Post: September 26th, 2011, 12:53 AM
  2. Record audio from mic and head phone
    By yoru214 in forum Java Theory & Questions
    Replies: 1
    Last Post: June 17th, 2011, 07:38 AM
  3. Easy help but can't figure it out.
    By weezer562 in forum What's Wrong With My Code?
    Replies: 7
    Last Post: October 19th, 2010, 09:50 PM
  4. [SOLVED] My head Hurts... such a simple problem but I'm stuck!
    By Kassino in forum What's Wrong With My Code?
    Replies: 4
    Last Post: May 10th, 2010, 08:38 AM
  5. Simple Game In Java (Head and Tails).
    By drkossa in forum Java Theory & Questions
    Replies: 5
    Last Post: November 28th, 2009, 11:40 AM