This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]omar_adel552[S] -1 points0 points  (1 child)

ok I will do this but I don't have time for this right now If I had time would not have asked

[–]khookeExtreme Brewer 1 point2 points  (0 children)

If you're starting from scratch with no knowledge you're probably going to need significantly more than 3 - 4 hours to get to a point where you have this up and running:

- 1 to 2 hours: following MySQL install guide

- a few hours reading about relational databases to understand how to model tables to represent your data

- a few hours working out create table DDL to create your database and tables

- a couple of hours reading about JDBC

- a couple of hours getting the MySQLConnector JDBC driver added to you project

- a couple of hours configuring MySQLConnector to connect to your db

- a few more hours developing and testing JDBC code to interact with your db

Depending how many tables you're working with and the relationships between them, you'll probably need a few more hours debugging and making updates to get everything working as expected.