有关使用 Connector/J 的示例,请参阅本文档的各个部分。本节提供这些示例的摘要和链接。
示例 7.1,“Connector/J:从 DriverManager 获取连接”
DriverManager
示例 7.2,“Connector/J:使用 java.sql.Statement 执行 SELECT 查询”
SELECT
示例 7.3,“Connector/J:调用存储过程”
示例 7.4,“Connector/J:使用 Connection.prepareCall()”
Connection.prepareCall()
示例 7.5,“Connector/J:注册输出参数”
示例 7.6,“Connector/J:设置 CallableStatement 输入参数”
CallableStatement
示例 7.7,“Connector/J:检索结果和输出参数值”
示例 7.8,“Connector/J:使用 Statement.getGeneratedKeys() 检索 AUTO_INCREMENT 列值”
Statement.getGeneratedKeys()
AUTO_INCREMENT
示例 7.9,“Connector/J:使用 SELECT LAST_INSERT_ID() 检索 AUTO_INCREMENT 列值”
SELECT LAST_INSERT_ID()
示例 7.10,“Connector/J:在 Updatable ResultSets 中检索 AUTO_INCREMENT 列值”
Updatable ResultSets
示例 8.1,“Connector/J:在 J2EE 应用服务器中使用连接池”
示例 16.1,“Connector/J:具有重试逻辑的事务示例”