what are the needed tools for JDBC?

iam new to this field, i want to know what are the required tools for JDBC?i know that i need java.sql and javax.sql packages, but how can i get them?what about the drivers?thnx in advance
[216 byte] By [aliaaa] at [2007-11-27 8:40:34]
# 1

You need to go to the vendor's web site such as Oracle and download the jar file for that particular database. Example: ojdbc14.jar for an oracle database and copy it to the 'lib' folder of your project and then include it with your project. Within that jar file, you will have datasource, preparedStatement, resultSet objects. You will need to read up on how to instansiate the datasource for that database from the vendor's documentation.

George123a at 2007-7-12 20:39:05 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...