博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
A Summaryof JDBC
阅读量:5254 次
发布时间:2019-06-14

本文共 755 字,大约阅读时间需要 2 分钟。

Die Sonne gewinnen!

 

I think it's easy to understand what is JDBC used for.

Programer's program should be connected to DB.So programer need JDBC to make it easy.

 

 JDBC is a standard interface which is achieved by the manufacturer.

A standard can make thing easy.

 

What should programer do?

just use the interface.

 

Drive Management:

           Driver Manager

Connect Interface:

           Connection

           DatabaseMetaData

Sentence Object Interface:

           Statement

           PreparedStatement

           CallableStatement

Results Interface:

           ResultSet

           ResultSetMetaData

 

JDBC's workflow:

           1 load the driver,and establish the connection.

           2 establish sentance object.

           3 execute SQL.

           4 deal with results' collection.

           5 close connection.

 

Examples:my two other articles.

转载于:https://www.cnblogs.com/rixiang/p/4936533.html

你可能感兴趣的文章
简述spring中常有的几种advice?
查看>>
学习Redux之分析Redux核心代码分析
查看>>
ABAP 创建和调用WebService
查看>>
C# 实例化顺序
查看>>
CSS水平垂直居中总结
查看>>
委托又给我惹麻烦了————记委托链的取消注册、获取返回值
查看>>
ps怎么把白色背景变透明
查看>>
gource 安装教程
查看>>
字符串转 Boolean 的正确方式
查看>>
给你的网站404页面加上“宝贝寻亲”公益页面
查看>>
整理推荐的CSS属性书写顺序
查看>>
协程, IO阻塞模型 和 IO非阻塞模型
查看>>
ServerSocket和Socket通信
查看>>
css & input type & search icon
查看>>
jQuery插件开发详细教程
查看>>
Crontab 在linux中的非常有用的Schedule Jobs
查看>>
ProxySQL Scheduler
查看>>
源代码的下载和编译读后感
查看>>
Kafka学习笔记
查看>>
Octotree Chrome安装与使用方法
查看>>