jsp页面连接MySql数据库

<%@pagelanguage="java"import="java.util.*"pageEncoding="UTF-8"%><%@pageimport="java.s... <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ page import="java.sql.*"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://"
+ request.getServerName() + ":" + request.getServerPort()
+ path + "/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">

<title>My JSP 'inster.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->

</head>

<body>
<%
Connection conn = null;
Statement stat = null;
Class.forName("com.mysql.jdbc.Driver").newInstance();
String url = "jdbc:mysql://localhost:3306/blog", user = "root", password = "sys";
conn = DriverManager.getConnection(url, user, password);
stat = conn.createStatement();
String sql = "insert into rht (name,password) values=('jj','1234')";
if (stat.executeUpdate(sql) == 1)
out.print("数据插入成功");
else
out.print("数据插入失败");
if (stat != null) {
stat.close();
}
if (conn != null) {
conn.close();
}
%>
</body>
</html>
报如下错误,请各位大侠帮看看错那了,在此谢谢了!!
严重: Servlet.service() for servlet jsp threw exception
com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '=('jj','1234')' at line 1
展开
 我来答
Nika081
2010-02-16 · TA获得超过883个赞
知道小有建树答主
回答量:323
采纳率:100%
帮助的人:276万
展开全部
"insert into rht (name,password) values=('jj','1234')";

改成

"insert into rht (name,password) values('jj','1234')";

你这个=号是什么东西?
看一下SQL的语法

以后要用SQL语句之前,先在SQL里面确定这句话能跑过,没有错,再粘贴到jsp里面来
百度网友5feb0a96d
2010-02-16
知道答主
回答量:3
采纳率:0%
帮助的人:0
展开全部
建议,mysql中最好不要出现与mysql系统自带关键字相同的字段
你可以尝试将name和password改变,比如username userpass
你的数据库已经连接成功
报错的是因为你的sql语句出现问题。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式