1、导入sql文件命令:mysql>
use
数据库名;mysql>
source
d:/mysqlsql;
2、建立数据库:mysql>
create
database
库名;
3、建立数据表:mysql>
use
库名;mysql>
create
table
表名
(字段名
varchar(20),
字段名
char(1));
4、删除数据库:mysql>
drop
database
库名;
5、删除数据表:mysql>
drop
table
表名;
6、将表中记录清空:mysql>
delete
from
表名;
7、往表中插入记录:mysql>
insert
into
表名
values
("hyq","m");
8、更新表中数据:mysql->
update
表名
set
字段名1='a',字段名2='b'
where
字段名3='c';
9、用文本方式将数据装入数据表中:mysql>
load
data
local
infile
"d:/mysqltxt"
into
table
表名;
<table width="100%" border="0" cellpadding="0" cellspacing="1" bgcolor="#a8c7ce">
<tr align="center" height="25" bgcolor="d3eaef">
<td width="5%">
编号
</td>
<td width="10%">
标题
</td>
<td width="23%">
内容
</td>
<td width="10%">
发表日期
</td>
<td width="16%">
基本 *** 作
</td>
</tr>
<%
//获取新闻信息集合,newList是从后台返回来的集合变量
List nList = (List) sessiongetAttribute("newList");
NewsEntity new = null;
if (nListsize() <= 0) {
%>
<tr height="22" bgcolor="#FFFFFF" align="center">
<td colspan="9" align="center">
暂无新闻信息
</td>
</tr>
<%
} else {
for (int i = 0; i < nListsize(); i++) {
new = (NewsEntity) mListget(i);
%>
<tr height="22" bgcolor="#FFFFFF" align="center">
<td>
<%=newgetId() %>
</td>
<td>
<%=newgetTitle() %>
</td>
<td>
<%=newgetContent() %>
</td>
<td>
<%=newtime() %>
</td>
<td>
<a href="MusicServletforward=getNewsDetailById&ID=<%=newgetId()%>" >
<span class="STYLE2">编辑</span> </a> |
<a href="MusicServletforward=doDelNewsById&ID=<%=newgetId()%>"
onclick="return confirm('您确定要删除该条信息吗?');"><span
class="STYLE2">删除</span> </a>
</td>
</tr>
<%
}
}
%>
</table>
输入地址就能看见数据库的东西,一定要经过action的。不过可以设置在配置文件中跳转。在jsp页面上写上这个对象名属性名。比如是Student,你就可以写<=Studentname> 或者使用标签<s:Studentname>。至于这个类你要去servlet上进行 *** 作,在servlet上实现对数据库的查询,前提是你输入这个地址之后默认跳转到这个servlet上,再转到这个jsp页面上,就可以实现了。大概流程是这么地。如果真跟你详细说了,那可不是短时间能说完的。嘿嘿。希望对你有帮助
1你在jsp中嵌入java代码,在java代码里写for循环,循环产生你从数据库里面拿到的数据显示在li上
<%java代码%><%=java变量%>
2用jstl标签c:forEach
<c:forEach items="后台传过来的变量集合" var="变量">
<li>${变量}</li>
</c:forEach>
以上就是关于html网页怎么通过jsp连接mysql数据库,并且读取数据库中得数据,和写入数据全部的内容,包括:html网页怎么通过jsp连接mysql数据库,并且读取数据库中得数据,和写入数据、JSP获取数据库信息、jsp页面初始化时如何获取后台数据库数据等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)