第6章 访问数据库解析.ppt

  1. 1、本文档共61页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
例:%@page contentType=text/html; charset=GBK % %@page import=java.sql.* % % Class.forName(com.mysql.jdbc.Driver); Connection con = DriverManager.getConnection (jdbc:mysql://localhost:3306/book,root,“123); Statement stmt = con.createStatement(); stmt.executeUpdate(create table table1(id int, name varchar(30))); stmt.executeUpdate(insert into table1 values(10, java)); stmt.executeUpdate(insert into table1 values(20, JSP)); out.print(table1 has been created!); stmt.close(); con.close(); % MySQL数据库编程实例 已知在MySQL数据库book中存在bookinfo数据表,其结构如下: (提示:所采用数据库驱动程序为: com.mysql.jdbc.Driver ,数据库的地址为: jdbc:mysql://localhost:3306/book ,访问数据库的用户名密码均为空) 1请编写JSP程序输出该表中的所有图书的书名、作者、图书简介信息。参阅ch06/book文件夹 MySQL数据库编程综合实例 综合实例——图书信息管理系统 实现图书信息管理系统-图书信息的增删改查功能。 参阅ch06/book_mysql文件夹 Index.jsp Add.jsp Del.jsp Edit.jsp Error.jsp Update.jsp index.jsp %@ page language=java import=java.sql.* pageEncoding=gbk% %@ page errorPage=error.jsp % html head title图书管理系统/title /head body centera href=add.jsp添加图书信息/a/centerp table align=center width=50% border=1 trth书名/thth作者/thth价格/thth管理/th % Class.forName(com.mysql.jdbc.Driver); Connection con=DriverManager.getConnection(jdbc:mysql://localhost:3306/book,root,root); Statement stmt=con.createStatement(); String s=select * from bookinfo; ResultSet rs=stmt.executeQuery(s); while(rs.next()) {int id=rs.getInt(1); out.println(trtd+rs.getString(2)+/tdtd+rs.getString(3)+/tdtd+rs.getString(4)+/tdtda href=edit.jsp?id=+id+修改/anbsp;a href=del.jsp?id=+id+删除/a/td/tr); } rs.close(); stmt.close(); con.close(); % /table /body/html %@ page contentType=text/html; charset=gb2312 import=java.sql.* errorPage=error.jsp % html headtitle添加图书信息/title/head body form action=add.jsp method=post table align=center width=50% border=1 caption添加图书信息/caption tr th width=30%书名:/th td width=70%input name=bookname type=text/td /tr tr th作者:/th tdinput name=author type=text/td /tr tr th价格:/th tdinput name=price type=text元/td /tr tr

文档评论(0)

2299972 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档