I've recently started my first programming job, and what I need to do as my main project is to create a program for simulating diesel generator behaviour.
I'm creating this program using Java, which I've never used before (all of my limited experience is with C++), and the first problem I need to overcome is to create a database to store the necessary data that will act as input to the simulator.
This database problem strikes me as something that has, in general, been done many times before. Could anyone get me started on the right track towards achieving this with suggestions on what to use to first create the database, and then what to use to access it with the simulator? In regards to the latter, I've been reading over the java.sql package, and it seems as though it would suit my purposes. What do you think?
Thanks very much in advance.