JDBC learning notes

来源:互联网 发布:http5网络协议 编辑:程序博客网 时间:2024/06/03 23:00
I. overview of JDBC

1.JDBC:SUN provides a set of operating database specifications

The relationship between 2.JDBC and database: the relation between interface and implementation class

3.JDBC specification: (four core objects)

ADriverManager: for registration drivers

Connection: indicates a link to the database creation

Statement: the object that operates the database executing the SQL statement

Listing ResultSet: a result set or a virtual table

Two, JDBC entry procedures

1. create Java project, boot package



2. create a test database in MySQL and insert data



3. code implementation






4.results of enforcement


原创粉丝点击