Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Database question about Java

Status
Not open for further replies.

mmt4331

Programmer
Dec 18, 2000
125
0
0
US

I'm very new to Java (also to web design). I am just wondering how much database programming a java developer does and what type of database (ACCESS, Oracle, etc.) one usually use. Thx.
 
The amount of database programming depends on the application but it can be quite time-consuming and can involve a lot of 'donkey-work'. Database interaction requires the creation of specialised data access objects. These objects are responsible for firing the appropriate SQL statements at your database. A common approach is to create one data access object for each database table. The amount of work is then entirely dependent of the size of your database.

Regarding the database of choice. A lot of developers and web sites use mySql which is robust, fast, has a JDBC driver and best of all Free!!

If you wish to use Java to develop web sites check out "Beginning JSP Web Development". It is an excellent book, very easy to read and starts at the basics.

Good luck!
 
Hi,

Learn JDBC API, that's the answer of your question.
This API helps you communicate with whenever type of database you want (Access, MySQL, Oracle, PostgreSQL), but the database vendor must provide a jdbc driver so that you may use it.
Go to java.sun.com to know much more

Good luck,

Hamidou
 
I'm finding out that it is more and more necessary
to know db admin stuff. (or have a good db admin)
Because you will quickly find that your work is
helped hugely by the db setup.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top