标题:[求助] UPDATE语句中涉及字符串对象时如何写?
只看楼主
yats
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2004-11-2
 问题点数:0 回复次数:1 
[求助] UPDATE语句中涉及字符串对象时如何写?

我是用 String id=new String(request.getParameter("id")); String title=new String(request.getParameter("title")); String content=new String(request.getParameter("content"));

String strSQL="update news set newstitle=“+ title + ”,set newscontent="+ content +“'where id=“+id;

更新数据库中数据时用news.executeUpdate(strSQL)

//news是自己编写的一个javaBean

报错::连接数据库失败了,异常为:[Microsoft][ODBC Microsoft Access Driver] UPDATE 语句的语法错误。

请问是怎么回事?

String strSQL="update news set newstitle='dfjeo',newscontent='jsdfow' where id="+id;这样时没问题的。

搜索更多相关主题的帖子: String UPDATE 语句 数据库 
2004-12-15 16:31
yats
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2004-11-2
得分:0 

问题解决了,是我自己太粗心了。

竟然写了两个set。还有改为:

String strSQL="update news set newstitle='" + title + "', newscontent='"+ content +"'where id="+id;

2004-12-15 17:26



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-9442-1-1.html




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

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