About JDBC beginner tutorial

2019-06-14 16:09发布

问题:

I am new to jdbc.I dont know anything about jdbc.I want complete and detailed beginner tutorial on jdbc. Can any one suggest me the links or notes for the tutorial

回答1:

You could have just Googled it. Here is a good one:

http://www.jdbc-tutorial.com/

And for a detailed tutorial see this one: http://java.sun.com/developer/onlineTraining/Database/JDBC20Intro/JDBC20.html



回答2:

Here is a JDBC Tutorial from a Stanford Professor.

Here is a Beginner's JDBC Tutorial that can be used for any database management system; including MySQL, Oracle, PostgreSQL, RDM, etc.

Here is a JDBC Introduction from Oracle: docs.oracle.com/javase/tutorial/jdbc/overview/index.html



回答3:

JDBC stands for Java Database Connectivity is an Application Programming Interface(API) which has many interfaces which allows a java program to connect to database like MS Access, Oracle, MYSQL etc.

There are 4 types of Drivers : 1: JDBC-ODBC Bridge Driver 2: JDBC-Native API 3: JDBC-Net pure Java 4: 100% Pure Java

For more Details Refer following link:

http://www.tutorialspoint.com/jdbc/jdbc-driver-types.htm

For program with MS Access Refer following links:

http://www.codeproject.com/Articles/35018/Access-MS-Access-Databases-from-Java

http://java2all.com/technology/jdbc/jdbc-example/jdbc-example-with-access



回答4:

Refer to JDBC Developer's guide on Oracle site.



标签: jdbc