Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to learn about database connectivity as it relates to Java EE development. I've followed several examples online that use Glassfish and Derby in eclipse. These examples are easy but they've left holes in my understanding of what is actually happening. Now I'm attempting to create a MySQL database independent of Eclipse and the whole framework THEN I will try and connect the two.

What is the difference between a MySQL database and a MySQL server? I see that they have both option from the website. Since I already have a web server in my Java EE project will I also need a database server or can I just install a "database" and let the Eclipse manage the connection?

share|improve this question

1 Answer

up vote 0 down vote accepted

You should first make sure you have downloaded and installed the Mysql server for their website http://dev.mysql.com/downloads/mysql/ once you download install it will will ask you to configure it which I suggest you do it is very simple and does not require any fancy knowledge. Then server will allow you to create as many databases as you wish.

Once the installer is completed you should have in your program files a link to the mysql command line enter your password and then you will be in with the root account.

show databases;

will allow you to see the default databases. Do what ever SQL you need create table .... there and then from your code you will need to download a jar library http://dev.mysql.com/downloads/connector/j/ and then modify your code to connect using the JDBC driver.

This link is a very lengthy tutorial on how to use jdbc http://www.roseindia.net/jdbc/jdbc-mysql/ which seems to be what you need.

I personally always like coding myself and avoid being caught up in already made frameworks since you do not control everything. The frameworks might seems good but a year later when a new fancy requirement comes in it might just force you to start over again thats my 2 cens

share|improve this answer
1  
Java examples of roseindia.net exposes in general extremely bad practices. I definitely wouldn't call it a good resource. Just use Sun/Oracle's own JDBC tutorial. – BalusC Nov 18 '11 at 21:59
Thank you, This is related to my question in a way. I guess it partially answers my question if what you're saying is that there is no such thing as a standalone database without a server. This doesn't address my question about needing a database server AND a web server. Can my JEE6 manage my mySQL database or will I have to access it through a mySQL DB server always? I'm wondering about the efficiency of this. Currently I have a Derby server fully integrated with my Glassfish web container. but like I said I want to build an DB server outside of Glassfish but at the same efficiency. – Randnum Nov 18 '11 at 22:00
@BalusC This is related to my earlier question about connection failures. I know you have a tutorial about Glassfish with Derby which is the one I followed. It's a great tutorial but now I'm trying to build the DB first then connect Glassfish/Eclipse. I tried just adding the Connection/J driver and selecting "New Connection" from the DB context menu but for some reason I don't think it really created the DB. I cannot find the mySQL database inside of glassfishes directory where I see my earlier created Derby DB. – Randnum Nov 18 '11 at 22:04
@BalusC I did not call this a good resource I called it a lengthy tutorial. Oracle will for sure be a better resource but that one has it all in a convenient quick to learn format – Stainedart Nov 21 '11 at 21:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.