Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
I am new to databases. Now, I want to make 4 computers share the same database through LAN. So, which database would you recommend me to learn and how do you set up the location of the database be the specified by me?
if you are looking for free then go for mysql.You have not mentioned which operating system you use.Well mysql supportsmost of the operating systems.See this link for more info on databases
Related
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 5 days ago.
Improve this question
I am a sophomore in college currently learning core java basics. Java is said to be an object oriented language but I don't see how the use of OOPS benefits the code bases especially the long ones in the industry.
SO I tried mugging the theory without understanding the applications behind it and it was kind of difficult so I don't know what to do now
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
I noticed a lot of these appcompat_v7 versions in my workspace, are they really necessary and can i delete them?
You should be able to safely delete all of them but one. Keep the latest one.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
Thank you for helping.
Basically I have a JAR reservation program on my desktop. What is the best way to put this on my portfolio website so prospective employers can run my program via access on my website?
Many thanks.
The best option would probably be Java Webstart. It allows people to run your program straight from the web, without downloading it by hand or making it an applet.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
How to handle three database connection pool in tomcat 6 ? Three databases are(two oracle database and SQL server). Please advise what is the best to handle connections? Any any example code it will be more helpful to me.
I have seen examples of connectionpooling through JNDI. Is this best way to handle ?
http://sourceforge.net/projects/c3p0/
3CPO is another popular db connection pool. They have a lot of example code on their site.
http://www.mchange.com/projects/c3p0/
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
Should I put Models in a package like this:
com.mycompany.myproject.persistence.models
Or is there a different convention?
yes, or you can put them under domain.
Please refer examples given in the hibernate reference manual