I am designing a program that will use a large amount of database storage for information and even though it works fine while using Net beans because i start the server, what i need is to make a distribution that will run the java db on another machine by just running the program normally without a separate install and start up of other services because as it stands i have a login in dialog that wont start the rest of the program until that password is correct and this is then fed through for the database password and connection but when i run it on another machine it doesn't run because the database service doesn't start. So i was wondering if anyone knew how to get this working?
the way which the program is setup so far:
GUI class which runs and manages just the GUI side
a coordinating class which links a bunch of other classes for the main bulk of the process etc and receives most of its info from the GUI class and returns only what is needed.
the coordinating class also runs the database connection, record and retrieve methods
so i am hoping that its just another method i can add to one of these to start the java db then run the connection.
Thanks in advance for the help.