JDBC存储过程的调用
一. JDBC存储过程的调用
(1)存储过程是用SQL语句和控制流语句等编写的一段程序代码,在创建时已被编译成机器代码并存储在数据库中供客户端调用。
存储过程有以下优点:
1.所生成的机器代码被永久存储在数据库中,客户端调用时不需要重新编译,执行起来效率要高一些。
2.存储过程的网络使用效率比等效的SQL 语句要高。
(2)JDBC通过java.sql.CallableStatement接口调用数据库服务器中的存储过程;
(3)CallableStatement接口继承了PreparedStatement,PreparedStatement中常用的方法也适用于CallableStatement接口,
接口中常用的方法有:
1.public void setString(int n,String x) throws SQLException
将一个字符串类型的数据值x写入存储过程调用命令的第n个“?”号处,代替“?”,n为预编译语句中“?”的序号,第一个“?”的序号为1。
2.public ResultSet executeQuery() throws SQLException
执行一个会返回ResultSet结果集的存储过程。
3.public boolean execute() throws SQLException
通用的存储过程执行方法
4.public void registerOutParameter(int n,int sqlType) throws SQLException
将存储过程调用命令{call …}中第n个位置处的“?”参数注册声明为输出(OUT)参数,并定义返回数据的类型。返回数据类型SqlType可以用java.sql.Types类中的符号常量表达。
5.public int getInt(int n) throws SQLException
读取存储过程调用命令中“?”位置处的一个整数返回值,n为“?”号在存储过程调用命令中的序号。
二.实例解说
(1).调用一个能够返回一个ResulSet结果集的存储过程,对titles表的书名字段进行模糊查询,返回书名、类型、单价数据。操作步骤如下:
第1步:在pubs中创建一个名为exam4的存储过程完成查询。(在数据库中SQL Server中完成)
use pubs go create proc exam4 @key varchar(50) as begin select title,type,price from titles where title like @key end第2步:新建一个名为exam608.jsp的页面,在此JSP网页中调用此存储过程。
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage=""%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>无标题文档</title> </head> <body> <% Connection con = null; CallableStatement st = null; ResultSet rs = null; try { Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver"); String url = "jdbc:sqlserver://localhost:1433;databaseName=pubs;user=sa;password="; con = DriverManager.getConnection(url); String sql = "{call exam4(?)}"; //效果往这来看!!! st = con.prepareCall(sql); st.setString(1, "%the%"); rs = st.executeQuery(); while (rs.next()) { out.print(rs.getString(1)); out.print(rs.getString(2)); out.print(rs.getString(3)); out.print("<br>"); } } catch (Exception e) { out.print("数据库操作出错:" + e); } finally { if (rs != null) rs.close(); if (st != null) st.close(); if (con != null) con.close(); } %> </body> </html>
操作步骤如下:
第1步:在pubs中创建一个名为newRecord的存储过程,输入以下代码:
use pubs go create proc newRecord @title_id varchar(50), @title varchar(100), @type varchar(30), @price money, @pubdate datetime as begin insert into titles(title_id,title,type,price,pubdate) values(@title_id,@title,@type,@price,@pubdate) end
第2步:建立一个名为exam609.jsp的JSP表单页面供用户输入图书信息。
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>无标题文档</title> </head> <body> <form id="form1" name="form1" method="post" action="exam610.jsp"> 请输入书号(如AD3344): <label> <input name="book_id" type="text" id="book_id" /> </label> <p>请输入书名(如Java程序设计): <label> <input name="book_name" type="text" id="book_name" /> </label> </p> <p>请选择书的类型: <label> <select name="book_type" id="book_type"> <option value="business">business</option> <option value="psychology">psychology</option> <option value="trad_cook">trad_cook</option> <option value="popular_comp">popular_comp</option> </select> </label> </p> <p>请输入书的单价(如45.3): <label> <input name="book_price" type="text" id="book_price" /> </label> </p> <p>请输入图书的出版日期(如2004-3-6): <label> <input name="pub_date" type="text" id="pub_date" /> </label> </p> <p> <label> <input type="submit" name="Submit" value="提交" /> </label> </p> </form> </body> </html>
第3步:定义exam610.jsp读取表单中的数据并写入数据库中。
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>无标题文档</title> </head> <body> <% String book_id=request.getParameter("book_id"); String book_name=request.getParameter("book_name"); String book_type=request.getParameter("book_type"); String book_price=request.getParameter("book_price"); String pub_date=request.getParameter("pub_date"); Connection con=null; CallableStatement st =null; try { Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver"); String url="jdbc:sqlserver://localhost:1433;databaseName=pubs;user=sa;password="; con = DriverManager.getConnection(url); String sql="{call newRecord(?,?,?,?,?)}"; st=con.prepareCall(sql); st.setString(1,book_id); st.setString(2,book_name); st.setString(3,book_type); st.setDouble(4,Double.parseDouble(book_price)); st.setString(5,pub_date); st.execute(); out.println("成功加入记录,请用查询分析器验证"); } catch(Exception e) { out.println(e); } finally { if(st != null ) {st.close();} if(con != null ) {con.close();} } %> </body> </html>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。