# 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
时间: 2024-10-12 23:55:14