输入banner图图片脚本导航/分类

My Study Note of JDBC (2.1)

# JDBC -- The Java™ Tutorials 
# Study Note of JDBC
# victor
# 2016.05.31

JDBC Study Note ----connect to database

通常,使用JDBC执行SQL语句需要下面5 个步骤:
1> 建立一个连接         | establish a connection
2> 构造一条语句         | create a statement
3> 执行语句             | execute the query
4> 处理结果             | process the resultset object
5> 关闭连接             | close the connection

 

My Study Note of JDBC (2.1)

标签: