Examples of simultaneous application of "stored procedure" and "javabean" in jsp

Source: Internet
Author: User
Stored procedures and javabean applications
Storage procedure sp_shop_base:
Create Procedure sp_shop_base (@ shop_id int, @ msg char (50) output)
As
SELECT shop_name, shop_phone, shop_email, shop_cash, shop_address
FROM shop_shop
WHERE shop_id = @ shop_id
SELECT @ msg = 'retrieval finished'
Return 1
Program:
<% @ Page contentType = "text/html; charset = gb2312" %>
<Html>
<Head>
<Meta http-equiv = "Content-Type" content = "text/html; charset = gb2312">
<Title> JSP stored procedure-javabean-JDBC-ODBC-SQL Server </title>
</Head>
<Body>
<% @ Page language = "java" import = "java. SQL. *" %>
<Jsp: useBean id = "bka" scope = "page" class = "shop. bka"/>
<%
ResultSet RS = bka.exe cuteQuery ("{call sp_shop_base ('2 ','')}");
While (RS. next ()){
Out. println (RS. getString (1 ));
Out. println (RS. getString (2 ));
Out. println (RS. getString (3 ));
Out. println (RS. getString (4 ));
Out. println (RS. getString (5 ));
}
RS. close ();
%>
__________________________________________________

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.