Microsoft][ODBC SQL Server Driver][SQL Server]第 1 行: '=' 附近有语法错误。

代码如下。。什么问题呢???<%@pagecontentType="text/html;charset=GB2312"%><%@pageimport="java.sql.... 代码如下。。什么问题呢???
<%@ page contentType="text/html; charset=GB2312"%>
<%@ page import="java.sql.*" %>
<html>
<head>
<title>留言记录</title>
</head>
<body>
<% request.setCharacterEncoding("GB2312");
String s_author=request.getParameter("g_author");
if(s_author==null){
s_author="";
}
String s_title=request.getParameter("g_title");
if(s_title==null){
s_title="";
}
String s_content=request.getParameter("g_content");
if(s_content==null){
s_content="";
}
%>
<font size=4 color=bule>留言记录</font><hr>
<%
String driverClass="sun.jdbc.odbc.JdbcOdbcDriver";
String url = "jdbc:odbc:guestbook";
String username = "sa";
String password = "123456";
String sql;
Class.forName(driverClass);
Connection conn=DriverManager.getConnection(url, username, password);
Statement stmt=conn.createStatement();
try{
sql="Insert Into notes(author,title,content)"+
"Values('"+s_author+"','"+s_title+"','"+s_content+"')";
stmt.executeUpdate(sql);
ResultSet rs = stmt.executeQuery("select * from notes='"+s_author+"'");
%>
<table width="100%" border="0" cellpadding="1" cellspacing="1" class="td">
<tr>
<td width="20%">留言者</td>
<td width="20%">留言标题</td>
<td width="60%">留言内容</td>
</tr>
<%
while(rs.next()){
%>
<tr>
<td><%=rs.getString("author")%></td>
<td><%=rs.getString("title")%></td>
<td><%=rs.getString("content")%></td>
</tr>
<%
}
rs.close();
}
catch(Exception e){
out.println(e.getMessage());
}
stmt.close();
conn.close();
%>
</table> <a href="index.jsp">继续留言</a>

</body>
</html>
展开
 我来答
wanghl314
2012-05-26 · TA获得超过121个赞
知道答主
回答量:73
采纳率:0%
帮助的人:66.2万
展开全部
ResultSet rs = stmt.executeQuery("select * from notes='"+s_author+"'");
这错了,应该是
ResultSet rs = stmt.executeQuery("select * from notes where author='"+s_author+"'");
少了where author
时空的落叶
2012-05-26 · TA获得超过501个赞
知道小有建树答主
回答量:487
采纳率:0%
帮助的人:305万
展开全部

这条查询有问题,你没发现?

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式