来源:ab蓝学网 时间:2013-06-06 点击:3894
简介:java教程|JSP中的数据库操作(1):MySQL数据库创建及管理本文目录顺序:安装MySQLMySQL管理软件SQLYogEnterprise--30天试用期到期解决方法使用SQLYogEnterprise建立...
JSP中的数据库操作(1):MySQL数据库创建及管理
本文目录顺序:
安装MySQL
MySQL管理软件SQLYog Enterprise
--30天试用期到期解决方法
使用SQLYog Enterprise建立数据库
MySQL的各项参数
1. 安装MySQL
下载并且安装。安装的时候配置用户名和密码,请记住自己的配置。
2. MySQL管理软件SQLYog Enterprise
MySQL是命令行页面,管理不方便,所以我们采用一个图形界面的软件SQLYog Enterprise管理数据库。SQLYog Enterprise是一个很强大的数据库管理软件,可以轻松的新建,修改,删除,重命名数据库。
2.1 30天试用期到期解决方法
在运行中输入regedit打开注册表,删除注册表\HEYK_CURRENT_USER\Software\{FCE28CE8-D8CE-4637-9BC7-93E4C0D407FA}中的值,30天就会重新计数。就可以一直使用了。
3 使用SQLYog Enterprise建立数据库
3.1 新建数据库create database
在左侧面板的空白处单击右键,选择Create Database,在弹出框中输入数据库名字。Datebase charset中可以选择采用的字符集。为了避免中文乱码,建议采用和网页中一致的字符集。设置好之后点Create就可以了。
3.2 新建表create table
用之前建立的一个名为news的数据库做示范。点击news左侧的加号,在出现的文件夹列表中选择table,右键单击table,在弹出菜单中选择Create Table
在接下来出现的页面填入表列的名称和属性。
Field Name为列名。Datatype为类型。Len为允许内容长度。PK是Primate Key,即主键。主键是一个数据库中的标识,每行的主键必须不同。
我们建立四个列。
第一列为id,整数型,设为PK,勾选auto increase,这样新建数据的时候该值就会自动填入。
第二列为title,char型,存放文字。
第三列为content,varchar型。因为char型最长为255字节,更长的就要选择varchar型了。
第四列为time,设为Datetime型。Datetime可以表示年月日时分秒。
设置好之后,点击下方的Create,填入表名,进行保存。(警告:千万不要填完直接点右上角的叉叉,后果你懂得)
3.3 加入数据
选中刚才新建的表,在右侧选择第三栏Table Date。双击相应的位置就可以插入数据。插入完之后点保存。设为auto increase的值会自动增加,不用填。
4. MySQL的各项参数
在MySQL的根目录下面打开my.ini,可以看到MySQL的各项参数。
端口号:port=3306
设置默认字符集:default-character-set=utf8
数据库存放的位置:datadir="C:/Documents and Settings/All Users/Application Data/MySQL/MySQL Server 5.1/Data/"
JSP中的数据库操作(2):JSP页面中的数据库查询
要在JSP页面中实现数据库的查询主要有连接及查询数据库的java代码部分和html页面代码部分。实现这个页面,我们进行一个三步走
1、写出连接数据库的代码
2、写出用于显示页面的代码
3、将连接数据库的代码插入到页面代码的恰当位置。
1. 连接数据库的代码
1.1 导入sql包
<% import="java.sql.*" %>
1.2 连接、查询、关闭数据库
怎样查看冰箱里面有没有大象?1、打开冰箱门。2、看一下。3、关闭冰箱门。就是这个过程。。。。。
[html]
<%
Class.forName("com.mysql.jdbc.Driver").newInstance();
String url="jdbc:mysql://localhost:3306/news";
String user="root";
String password="1234";
//配置并连接数据库
Connection conn = DriverManager.getConnection(url, user, password);
Statement st = conn.createStatement();
//查询语句,显示最后10条并且倒序排列
ResultSet rs = st.executeQuery("SELECT * FROM data ORDER BY id DESC LIMIT 10");
//输出表头
out.println("<tr><td>标题</td><td>内容</td><td>时间</td></tr>");
//依次输出每个查询结果
while(rs.next()){
out.print("<tr><td>"+rs.getString("title")+"</td><td>"+rs.getString("content")+"</td><td>"+rs.getString("date")+"</td></tr><br>");
//如果采用列名,要加引号
}
out.print("</table><hr>");
//断开数据库
conn.close();
%>
2. 页面的HTML代码
为了页面漂亮一点,做点点美化~做一个表格来存放数据
[html]
<%@ page language="java" import="java.util.*, java.sql.*" pageEncoding="gb2312"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<%request.setCharacterEncoding("UTF-8");%>
<%response.setCharacterEncoding("UTF-8");%>
<span><span class="tag"></span></span><!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">
<style type="text/css">
table{ width:800px; margin:auto; padding: 5px; font-size:12px; border:0px; background:#00CCFF;}
tr{ background:#fff;}
td{ padding: 5px;}
#title{ text-align:center;}
</style>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>JSP页面中的数据库查询</title>
</head>
<body>
<form method=post>
标题:<input type="text" name="title"/><br/>
内容:<input type="text" name="content"/><br/>
<input type="submit" value="提交" />
</form>
<table >
<tr>
<td width="174" id="title">标题</td>
<td width="449" id="title">内容</td>
<td width="161" id="title">时间</td>
</tr>
<tr>
<td width="174" > </td>
<td width="449" > </td>
<td width="161"> </td>
</tr>
</table>
</body>
</html>
3. 把前面两个代码放在一起
放的时候注意代码的位置安排。
[html]
<%@ page language="java" import="java.util.*, java.sql.*" pageEncoding="gb2312"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<%request.setCharacterEncoding("UTF-8");%>
<%response.setCharacterEncoding("UTF-8");%>
<!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">
<style type="text/css">
table{ width:800px; margin:auto; padding: 5px; font-size:12px; border:0px; background:#00CCFF;}
tr{ background:#fff;}
td{ padding: 5px;}
#title{ text-align:center;}
</style>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档11</title>
</head>
<body>
<%
//连接MySQL数据库
Class.forName("com.mysql.jdbc.Driver").newInstance();
String url="jdbc:mysql://localhost:3306/news";
String user="root";
String password="1234";
Connection conn = DriverManager.getConnection(url, user, password);
Statement st = conn.createStatement();
%>
<table >
<tr>
<td width="174" id="title">标题</td>
<td width="449" id="title">内容</td>
<td width="161" id="title">时间</td>
</tr>
<%
//把表格第二行的显示放到while循环中,就可以根据查询结果画出表格了。参数则放在<td>内的相应位置。
ResultSet rs = st.executeQuery("SELECT * FROM data ORDER BY id DESC LIMIT 10");
while(rs.next()){%>
<tr>
<td width="174" ><%=rs.getString("title") %></td>
<td width="449" ><%=rs.getString("content") %></td>
<td width="161"><%=rs.getString("time") %></td>
</tr>
<%}
//注意"}"的位置 %>
</table>
<%
rs.close();
conn.close();
%>
</body>
</html>
JSP中的数据库操作(3):JSP页面中的数据库插入
这次是怎样将大象放冰箱的命题了!大家都懂的!
我们要解决的主要有两个问题:
1、如何获取输入的内容
2、如何插入时间。
直接上代码
[html]
<%@ page language="java" import="java.util.*, java.sql.*" pageEncoding="gb2312"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<%request.setCharacterEncoding("UTF-8");%>
<%response.setCharacterEncoding("UTF-8");%>
<!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">
<style type="text/css">
table{ width:800px; margin:auto; padding: 5px; font-size:12px; border:0px; background:#00CCFF;}
tr{ background:#fff;}
td{ padding: 5px;}
#title{ text-align:center;}
</style>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档11</title>
</head>
<body>
<form method=post>
标题:<input type="text" name="title"/><br/>
内容:<input type="text" name="content"/><br/>
<input type="submit" value="提交" />
</form>
<%
//连接MySQL数据库
Class.forName("com.mysql.jdbc.Driver").newInstance();
String url="jdbc:mysql://localhost:3306/news";
String user="root";
String password="1234";
Connection conn = DriverManager.getConnection(url, user, password);
Statement st = conn.createStatement();
%>
<table >
<tr>
<td width="174" id="title">标题</td>
<td width="449" id="title">内容</td>
<td width="161" id="title">时间</td>
</tr>
<%
ResultSet rs = st.executeQuery("SELECT * FROM data ORDER BY id DESC LIMIT 10");
while(rs.next()){%>
<tr>
<td width="174" ><%=rs.getString("title") %></td>
<td width="449" ><%=rs.getString("content") %></td>
<td width="161"><%=rs.getString("time") %></td>
</tr>
<%} %>
</table>
<%
//通过input中的name获取输入的内容。time那一行是获得时间及定义时间格式
String getTitle=request.getParameter("title");
String getContent=request.getParameter("content");
java.text.SimpleDateFormat time = new java.text.SimpleDateFormat( "yyyy-MM-dd HH:mm:ss");
String insertSQL = "INSERT INTO data(title, content, time) Values (‘"+getTitle+"‘, ‘"+getContent+"‘, ‘ "+time.format(new java.util.Date())+"‘)";
st.executeUpdate(insertSQL);
%>
<%
rs.close();
st.close();
conn.close();
%>
</body>
</html>