| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 471 人关注过本帖
标题:[求助]在sql server2000中执行sql命令的错误,
只看楼主 加入收藏
majunjie
Rank: 1
等 级:新手上路
帖 子:31
专家分:0
注 册:2006-5-31
收藏
 问题点数:0 回复次数:1 
[求助]在sql server2000中执行sql命令的错误,
我在jsp中,需要执行sql命令,他总是出现,java.sql.SQLException: [Microsoft][ODBC SQL Server Driver][SQL Server]第 1 行: '='有错误

程序如下:
<%
request.setCharacterEncoding("gb2312");
String id=request.getParameter("id");

Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection conn=DriverManager.getConnection("jdbc:odbc:server");
Statement stmt=conn.createStatement();
ResultSet rs;
String sql="select * from Sliuyan where id='"+id+"'";
try{
rs=stmt.executeQuery(sql);
while(rs.next()){
String name=rs.getString("name");
String title=rs.getString("title");
String content=rs.getString("content");
String Stime=rs.getString("Stime");
session.setAttribute("title",title);
%>
<table width="592" height="254" border="1" align="center" cellspacing="0" bgcolor="#FDC755">
<tr>
<th width="125" height="33" scope="col">主题</th>
<th width="457" scope="col"><%=title%>&nbsp;</th>
</tr>
<tr>
<td height="31">作者</td>
<td><%=name%>&nbsp;</td>
</tr>
<tr>
<td height="34">留言时间</td>
<td><%=Stime%>&nbsp;</td>
</tr>
<tr>
<td height="113">留言内容</td>
<td><%=content%>&nbsp;</td>
</tr>
</table>
<%
}
String hfsql="select * from Shuifu biaoji='"+id+"'";
ResultSet hfrs=stmt.executeQuery(hfsql);
while(hfrs.next())
{
String hfStime=rs.getString("Stime");
String hfcontent=rs.getString("content");
%>
<table width="592" height="149" border="1" align="center" cellspacing="0" bgcolor="#FDC755">
<tr>
<td width="125" height="34">答复时间</td>
<td width="457"><%=hfStime%>&nbsp;</td>
</tr>
<tr>
<td height="113">留言内容</td>
<td><%=hfcontent%>&nbsp;</td>
</tr>
</table>
<%}
}catch(Exception e){
e.printStackTrace();
}
%>
<table width="592" border="1" align="center" cellspacing="0" bgcolor="#FDC755">
<tr>
<th height="26" scope="col"><a href="liuyan.jsp">返回留言板</a>&nbsp;&nbsp;&nbsp;<a href='javascript:openwindow()'>学生会答复</a></th>
</tr>
</table>
<p align="center"><a href="javascript:window.close();" class="STYLE1">关闭本窗口</a></p>
</body>
搜索更多相关主题的帖子: sql 命令 
2006-06-07 13:29
majunjie
Rank: 1
等 级:新手上路
帖 子:31
专家分:0
注 册:2006-5-31
收藏
得分:0 

打扰了啊,我解决了,太粗心了


JAVA天下
2006-06-07 13:38
快速回复:[求助]在sql server2000中执行sql命令的错误,
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.018980 second(s), 10 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved